SqlCursor

interface SqlCursor

Represents a SQL result set which can be iterated through with next. Initially the cursor will not point to any row, and calling next once will iterate to the first row.

Functions

Link copied to clipboard
abstract fun getBoolean(index: Int): Boolean?
Link copied to clipboard
abstract fun getBytes(index: Int): ByteArray?
Link copied to clipboard
abstract fun getDouble(index: Int): Double?
Link copied to clipboard
abstract fun getLong(index: Int): Long?
Link copied to clipboard
abstract fun getString(index: Int): String?
Link copied to clipboard
abstract fun next(): QueryResult<Boolean>

Move to the next row in the result set.