ISQLStatement

Functions

Link copied to clipboard
abstract fun bindBlob(index: Int, value: ByteArray)

Bind a byte array value to this statement. The value remains bound until clearBindings is called.

Link copied to clipboard
abstract fun bindDouble(index: Int, value: Double)

Bind a double value to this statement. The value remains bound until clearBindings is called.

Link copied to clipboard
abstract fun bindInt(index: Int, value: Int)

Bind an integer value to this statement. The value remains bound until clearBindings is called.

Link copied to clipboard
abstract fun bindLong(index: Int, value: Long)

Bind a long value to this statement. The value remains bound until clearBindings is called.

Link copied to clipboard
abstract fun bindNull(index: Int)

Bind a null value to this statement. The value remains bound until clearBindings is called.

Link copied to clipboard
abstract fun bindString(index: Int, value: String)

Bind a String value to this statement. The value remains bound until clearBindings is called.

Link copied to clipboard
abstract fun clearBindings()

Clears all existing bindings. Unset bindings are treated as null.

Link copied to clipboard
abstract override fun close()
Link copied to clipboard
abstract fun execute()
Link copied to clipboard
abstract fun executeInsert(): Long
Link copied to clipboard
abstract fun executeUpdateDelete(): Int
Link copied to clipboard
abstract fun simpleQueryForLong(): Long
Link copied to clipboard
abstract fun simpleQueryForString(): String?