Still i am getting List of Facebook Friends in Form of January to December in Ascending order, see below image:
But now i want to show List of Facebook Friends in Form of Upcoming Birthdays Like:
Recents on Top
I am using below query to fetch List of Friends:
Log.d(LOG_TAG, "requestFriends(" + ")");
Date date = new Date();
String current_date = null;
SimpleDateFormat dateFormatter = new SimpleDateFormat("MM-dd-yyyy");
current_date = dateFormatter.format(date);
System.out.println("Current Date is:- " + current_date);
String query = "select name, birthday, uid, pic_square from user where uid in (select uid2 from friend where uid1=me()) and birthday_date>= "
+ current_date + " order by birthday_date";
Please tell me what query i should use to fetch List in Form of Upcoming B'days
