SqlCursor

interface SqlCursor : Closeable

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

close
Link copied to clipboard
common
abstract fun close()
Close any resources backed by this object.
getBytes
Link copied to clipboard
common
abstract fun getBytes(index: Int): ByteArray?
getDouble
Link copied to clipboard
common
abstract fun getDouble(index: Int): Double?
getLong
Link copied to clipboard
common
abstract fun getLong(index: Int): Long?
getString
Link copied to clipboard
common
abstract fun getString(index: Int): String?
next
Link copied to clipboard
common
abstract fun next(): Boolean
Move to the next row in the result set.