Index of values


B
bind [Sqlite3_big]
bind [Sqlite3]
bind_and_exec [Sqlite3]
Reset the stmt, bind values, then call Sqlite3.do_step
bind_fetch [Sqlite3]
Reset the stmt, bind values, then call Sqlite3.fold_step
bind_parameter_count [Sqlite3]
bind_parameter_index [Sqlite3]
bind_parameter_name [Sqlite3]
blob_escape [Sqlite3]
Base-16 encode a string, suitably for BLOB literals (X'abcd' notation).
busy_set [Sqlite3]
busy_timeout [Sqlite3]
busy_unset [Sqlite3]

C
changes [Sqlite3]
clear_bindings [Sqlite3]
close_db [Sqlite3]
column_blob [Sqlite3_big]
column_blob [Sqlite3]
column_count [Sqlite3]
column_decltype [Sqlite3]
column_double [Sqlite3]
column_int [Sqlite3]
column_int64 [Sqlite3]
column_name [Sqlite3]
column_text [Sqlite3]
column_type [Sqlite3]
create_fun_0 [Sqlite3]
create_fun_1 [Sqlite3]
create_fun_2 [Sqlite3]
create_fun_3 [Sqlite3]
create_fun_N [Sqlite3]

D
data_count [Sqlite3]
delete_function [Sqlite3]
do_step [Sqlite3]
Repeatedly apply Sqlite3.step to the statement until `DONE is returned

E
exec [Sqlite3]
For each statement in the string, prepare it and execute it.
exec_f [Sqlite3]
exec_fv [Sqlite3]
exec_v [Sqlite3]
expired [Sqlite3]
This function is actually not a binding to the sqlite3_expired function.

F
fetch [Sqlite3]
For each statement in the string, prepare it, execute it and apply the third argument for each returned row.
fetch_f [Sqlite3]
fetch_fv [Sqlite3]
fetch_v [Sqlite3]
finalize_stmt [Sqlite3]
Finalize a statement.
fold_prepare [Sqlite3]
fold_prepare db sql f init prepares all statements in the string sql, calling f for each one.
fold_prepare_bind [Sqlite3]
fold_prepare_bind db sql values f init prepares all statements in the string sql, binding values from the list values and then calling f for each one.
fold_prepare_bind_f [Sqlite3]
fold_prepare_f [Sqlite3]
fold_step [Sqlite3]
fold_step f init stmt repeatedly applies Sqlite3.step to stmt and calls f on each row.

G
get_autocommit [Sqlite3]

I
init [Sqlite3]
Reference this value to ensure that the Sqlite3 module is linked in.
interrupt [Sqlite3]
is_complete [Sqlite3]

L
last_insert_rowid [Sqlite3]

O
open_db [Sqlite3]

P
prepare_one [Sqlite3]
Prepare the first statement in a string.
prepare_one_f [Sqlite3]
Same as prepare_one but uses a format string.
progress_handler_set [Sqlite3]
progress_handler_unset [Sqlite3]

R
reset [Sqlite3]

S
sleep [Sqlite3]
sql_escape [Sqlite3]
Escape a string according to SQL rules: any quote character ' is doubled.
step [Sqlite3]
Call sqlite3_step on the statement.

T
total_changes [Sqlite3]
trace_set [Sqlite3]
trace_unset [Sqlite3]
transaction [Sqlite3]
Evaluate a function within a transaction.
transfer_bindings [Sqlite3]

V
value_blob [Sqlite3]
value_double [Sqlite3]
value_int [Sqlite3]
value_int64 [Sqlite3]
value_text [Sqlite3]
value_type [Sqlite3]
version [Sqlite3]
The sqlite3 library version number.