B | |
bind [Sqlite3] | bind stmt index data Binds data to the free variable at the position index of
statement stmt .
|
bind_parameter_count [Sqlite3] |
Get the number of variable to be bound.
|
bind_parameter_index [Sqlite3] |
Lookup the position of by the name of the free variable in the statement.
|
bind_parameter_name [Sqlite3] |
Get the parameter name of the free variable at the specified position of the statement.
|
C | |
column [Sqlite3] |
Get the data in the specified column of the result of the last step.
|
column_decltype [Sqlite3] |
Get the declared type of the specified column of the result of the last step.
|
column_name [Sqlite3] |
Get the header of the specified column of the result of the last step.
|
D | |
data_count [Sqlite3] |
Get the number of columns in the result of the last step.
|
db_close [Sqlite3] | db_close db Closes a database file and invalidates
the handle.
|
db_open [Sqlite3] | db_open filename opens the database file filename and
returns a database handle.
|
E | |
errcode [Sqlite3] | errcode db Returns the error code of the last operation.
|
errmsg [Sqlite3] | errmsg db Returns the error message of the last operation.
|
exec [Sqlite3] | exec sql callback performs an SQL operation.
|
exec_sql [Sqlite3] |
Perform a query in a stepwise manner.
|
expired [Sqlite3] |
Returns true if the statement has expired.
|
F | |
finalize [Sqlite3] |
Finalize the statement.
|
L | |
last_insert_rowid [Sqlite3] |
Get the index of the row inserted by the last operation.
|
P | |
prepare [Sqlite3] |
Compile an SQL statement into bytecode.
|
prepare_tail [Sqlite3] |
Compile an SQL statement into bytecode.
|
R | |
recompile [Sqlite3] |
Recompile an SQL statement into bytecode.
|
reset [Sqlite3] |
Reset the statement (i.e.
|
row_data [Sqlite3] |
Get all the declared types of the columns of the last query step
in an array
|
row_decltypes [Sqlite3] |
Get all the data of the last query step in an array.
|
row_names [Sqlite3] |
Get all the column names of the last query step in an array.
|
S | |
step [Sqlite3] |
Perform one step of the query.
|
string_of_data [Sqlite3] |
Returns a string representing the data.
|
string_of_rc [Sqlite3] |
Returns a string representing the return code.
|
T | |
transfer_bindings [Sqlite3] |
Transfer the bindings of the statement to the other statement (second parameter)
|