I tried to query the ContentProvider CallLog to get the records for date > 1-Nov-2009.
My code is as followed:
- Code: Select all
Cursor c = getContentResolver().query(android.provider.CallLog.Calls.CONTENT_URI,
null,
"DATE >= '2009-11-01" ,
null,
android.provider.CallLog.Calls.DATE + " DESC");
There is no records returned, please guide how to craft the correct filter.
thanks

