Added in API level 1

SQLiteCursor

open class SQLiteCursor : AbstractWindowedCursor
kotlin.Any
   ↳ android.database.AbstractCursor
   ↳ android.database.AbstractWindowedCursor
   ↳ android.database.sqlite.SQLiteCursor

A Cursor implementation that exposes results from a query on a SQLiteDatabase. SQLiteCursor is not internally synchronized so code using a SQLiteCursor from multiple threads should perform its own synchronization when using the SQLiteCursor.

Summary

Public constructors
SQLiteCursor(db: SQLiteDatabase!, driver: SQLiteCursorDriver!, editTable: String!, query: SQLiteQuery!)

Execute a query and provide access to its result set through a Cursor interface.

SQLiteCursor(driver: SQLiteCursorDriver!, editTable: String!, query: SQLiteQuery!)

Execute a query and provide access to its result set through a Cursor interface.

Public methods
open Unit

open Unit

open Int
getColumnIndex(columnName: String!)

open Array<String!>!

open Int

open SQLiteDatabase!

Get the database that this cursor is associated with.

open Boolean
onMove(oldPosition: Int, newPosition: Int)

open Boolean

open Unit
setFillWindowForwardOnly(fillWindowForwardOnly: Boolean)

Controls fetching of rows relative to requested position.

open Unit
setSelectionArguments(selectionArgs: Array<String!>!)

Changes the selection arguments.

open Unit

Protected methods
open Unit

Release the native resources, if they haven't been released yet.

Inherited functions
Inherited properties

Public constructors

SQLiteCursor

Added in API level 1
SQLiteCursor(
    db: SQLiteDatabase!,
    driver: SQLiteCursorDriver!,
    editTable: String!,
    query: SQLiteQuery!)

Deprecated: use SQLiteCursor(android.database.sqlite.SQLiteCursorDriver,java.lang.String,android.database.sqlite.SQLiteQuery) instead

Execute a query and provide access to its result set through a Cursor interface. For a query such as: SELECT name, birth, phone FROM myTable WHERE ... LIMIT 1,20 ORDER BY... the column names (name, birth, phone) would be in the projection argument and everything from FROM onward would be in the params argument.

Parameters
db SQLiteDatabase!: a reference to a Database object that is already constructed and opened. This param is not used any longer
editTable String!: the name of the table used for this query
query SQLiteQuery!: the rest of the query terms cursor is finalized

SQLiteCursor

Added in API level 1
SQLiteCursor(
    driver: SQLiteCursorDriver!,
    editTable: String!,
    query: SQLiteQuery!)

Execute a query and provide access to its result set through a Cursor interface. For a query such as: SELECT name, birth, phone FROM myTable WHERE ... LIMIT 1,20 ORDER BY... the column names (name, birth, phone) would be in the projection argument and everything from FROM onward would be in the params argument.

Parameters
editTable String!: the name of the table used for this query
query SQLiteQuery!: the SQLiteQuery object associated with this cursor object.

Public methods

close

Added in API level 1
open fun close(): Unit
Exceptions
java.lang.Exception if this resource cannot be closed
java.io.IOException if an I/O error occurs

deactivate

Added in API level 1
open fun deactivate(): Unit

getColumnIndex

Added in API level 1
open fun getColumnIndex(columnName: String!): Int
Parameters
columnName String!: the name of the target column.
Return
Int the zero-based column index for the given column name, or -1 if the column name does not exist. Value is -1 or greater

getColumnNames

Added in API level 1
open fun getColumnNames(): Array<String!>!
Return
Array<String!>! the names of the columns returned in this query.

getCount

Added in API level 1
open fun getCount(): Int
Return
Int the number of rows in the cursor. Value is 0 or greater

getDatabase

Added in API level 1
open fun getDatabase(): SQLiteDatabase!

Get the database that this cursor is associated with.

Return
SQLiteDatabase! the SQLiteDatabase that this cursor is associated with.

onMove

Added in API level 1
open fun onMove(
    oldPosition: Int,
    newPosition: Int
): Boolean
Parameters
oldPosition Int: the position that we're moving from
newPosition Int: the position that we're moving to
Return
Boolean true if the move is successful, false otherwise

requery

Added in API level 1
open fun requery(): Boolean
Return
Boolean true if the requery succeeded, false if not, in which case the cursor becomes invalid.

setFillWindowForwardOnly

Added in API level 28
open fun setFillWindowForwardOnly(fillWindowForwardOnly: Boolean): Unit

Controls fetching of rows relative to requested position.

Calling this method defines how rows will be loaded, but it doesn't affect rows that are already in the window. This setting is preserved if a new window is set

Parameters
fillWindowForwardOnly Boolean: if true, rows will be fetched starting from requested position up to the window's capacity. Default value is false.

setSelectionArguments

Added in API level 1
open fun setSelectionArguments(selectionArgs: Array<String!>!): Unit

Changes the selection arguments. The new values take effect after a call to requery().

setWindow

Added in API level 1
open fun setWindow(window: CursorWindow!): Unit
Parameters
window CursorWindow!: The new cursor window, typically a remote cursor window.

Protected methods

finalize

Added in API level 1
protected open fun finalize(): Unit

Release the native resources, if they haven't been released yet.

Exceptions
java.lang.Throwable the Exception raised by this method