Added in API level 1

SQLiteProgram

abstract class SQLiteProgram : SQLiteClosable
kotlin.Any
   ↳ android.database.sqlite.SQLiteClosable
   ↳ android.database.sqlite.SQLiteProgram

A base class for compiled SQLite programs.

This class is not thread-safe.

Summary

Public methods
open Unit

Given an array of String bindArgs, this method binds all of them in one single call.

open Unit
bindBlob(index: Int, value: ByteArray!)

Bind a byte array value to this statement.

open Unit
bindDouble(index: Int, value: Double)

Bind a double value to this statement.

open Unit
bindLong(index: Int, value: Long)

Bind a long value to this statement.

open Unit
bindNull(index: Int)

Bind a NULL value to this statement.

open Unit
bindString(index: Int, value: String!)

Bind a String value to this statement.

open Unit

Clears all existing bindings.

Int

Unimplemented.

Protected methods
open Unit

Inherited functions

Public methods

bindAllArgsAsStrings

Added in API level 11
open fun bindAllArgsAsStrings(bindArgs: Array<String!>!): Unit

Given an array of String bindArgs, this method binds all of them in one single call.

Parameters
bindArgs Array<String!>!: the String array of bind args, none of which must be null.

bindBlob

Added in API level 1
open fun bindBlob(
    index: Int,
    value: ByteArray!
): Unit

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

Parameters
index Int: The 1-based index to the parameter to bind
value ByteArray!: The value to bind, must not be null

bindDouble

Added in API level 1
open fun bindDouble(
    index: Int,
    value: Double
): Unit

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

Parameters
index Int: The 1-based index to the parameter to bind
value Double: The value to bind

bindLong

Added in API level 1
open fun bindLong(
    index: Int,
    value: Long
): Unit

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

Parameters
index Int: The 1-based index to the parameter to bind
value Long: The value to bind

bindNull

Added in API level 1
open fun bindNull(index: Int): Unit

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

Parameters
index Int: The 1-based index to the parameter to bind null to

bindString

Added in API level 1
open fun bindString(
    index: Int,
    value: String!
): Unit

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

Parameters
index Int: The 1-based index to the parameter to bind
value String!: The value to bind, must not be null

clearBindings

Added in API level 1
open fun clearBindings(): Unit

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

getUniqueId

Added in API level 1
Deprecated in API level 15
fun getUniqueId(): Int

Deprecated: This method is deprecated and must not be used.

Unimplemented.

Protected methods

onAllReferencesReleased

Added in API level 1
protected open fun onAllReferencesReleased(): Unit