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.
abstract fun getBytes(index: Int): ByteArray? |
|
abstract fun getDouble(index: Int): Double? |
|
abstract fun getLong(index: Int): Long? |
|
abstract fun getString(index: Int): String? |
|
abstract fun next(): Boolean
Move to the next row in the result set. |
|
close |
abstract fun close(): Unit
Close any resources backed by this object. |