Example usage for Java android.database.sqlite SQLiteCursor fields, constructors, methods, implement or subclass
The text is from its open source code.
SQLiteCursor(SQLiteDatabase db, SQLiteCursorDriver driver, String editTable, SQLiteQuery query) Execute a query and provide access to its result set through a Cursor interface. |
void | close() |
int | getColumnIndex(String columnName) |
int | getColumnIndexOrThrow(String columnName) |
int | getCount() |
int | getInt(int columnIndex) |
long | getLong(int columnIndex) |
String | getString(int columnIndex) |
CursorWindow | getWindow() |
boolean | moveToFirst() |
boolean | moveToNext() |