PreparedStatementParameters
Exposes the API to deal with PreparedStatement's parameters.
Binding Values To Prepared Statements. Binding Parameters and Reusing Prepared Statements
Properties
Functions
Sets the 64-bit floating point value as the value for the parameter at index. This function maps to sqlite3_bind_double().
Sets the 32-bit signed integer value as the value for the parameter at index. This function maps to sqlite3_bind_int().
Sets the 64-bit signed integer value as the value for the parameter at index. This function maps to sqlite3_bind_int64().
Sets null as the value for the parameter at index. This function maps to sqlite3_bind_null().
Sets the text value as the UTF-8 encoded value for the parameter at index. This function maps to sqlite3_bind_text().
Sets the bytes buffer value as the value for the parameter at index. This function maps to sqlite3_bind_blob().
Sets the value for the parameter at index to be a buffer of the given size with all bytes set to zero. This function maps to sqlite3_bind_zeroblob().
Sets the value for the parameter at index to be a buffer of the given size with all bytes set to zero. This function maps to sqlite3_bind_zeroblob64().
Sets the bytes buffer value as the value for the parameter at index. This function maps to sqlite3_bind_blob64().
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.