bindBlob

open fun bindBlob(index: Int, value: Array<Byte>)

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

Parameters

index

The 1-based index to the parameter to bind

value

value to bind (may be null)

See also

android.database.sqlite.SQLiteStatement#bindBlob(int, byte[] value)

open fun bindBlob(index: Int, value: String)

Converts the string to a byte array and Bind value to this statement. The value remains bound until clearBindings() is called.

Parameters

index

The 1-based index to the parameter to bind

value

value to bind (may be null)

See also

android.database.sqlite.SQLiteStatement#bindBlob(int, byte[] value)