Lines Matching refs:Cursor
26 import android.database.Cursor;
50 * Cursor c = builder.table(FeedContract.Entry.TABLE_NAME) // String TABLE_NAME = "entry"
58 * database, and returns the resulting {@link Cursor} object.
77 * Cursor c = builder.table(Tables.SESSIONS_JOIN_BLOCKS_ROOMS)
293 * @return A {@link Cursor} object, which is positioned before the first entry. Note that
294 * {@link Cursor}s are not synchronized, see the documentation for more details.
296 public Cursor query(SQLiteDatabase db, String[] columns, String orderBy) {
310 * @param having A filter declare which row groups to include in the cursor, if row grouping is
319 * @return A {@link Cursor} object, which is positioned before the first entry. Note that
320 * {@link Cursor}s are not synchronized, see the documentation for more details.
322 public Cursor query(SQLiteDatabase db, String[] columns, String groupBy,