Package-level declarations

Types

Link copied to clipboard

Exposes the Statement API.

Link copied to clipboard

Exposes the API to deal with PreparedStatement's parameters.

Link copied to clipboard
interface Row

Exposes the API to extract values from an SQLite row.

Functions

Link copied to clipboard

Sets the bytes buffer value as the value for the parameter at index or sets null as the value for the parameter at index if value is null.

Sets the 64-bit floating point value as the value for the parameter at index or sets null as the value for the parameter at index if value is null.

Sets the 32-bit signed integer value as the value for the parameter at index or sets null as the value for the parameter at index if value is null.

Sets the 64-bit signed integer value as the value for the parameter at index or sets null as the value for the parameter at index if value is null.

Sets the text value as the UTF-8 encoded value for the parameter at index or sets null as the value for the parameter at index if value is null.

fun PreparedStatementParameters.bind(index: Int, value: Any?, type: String? = null)

Sets value as the value for the parameter at index or sets null as the value for the parameter at index if value is null.