public class StudentsProvider extends ContentProvider { @Override public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) { Cursor c = new SQLiteQueryBuilder().query(db,projection,selection, selectionArgs, null, null, null); return c; } }