ISQLProgram

Inheritors

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()