Index of values


C
column_names [Sqlite]
Sqlite.column_names vm returns the column names of query result.
column_types [Sqlite]
Sqlite.column_types vm returns the column types of query result.
compile [Sqlite]
Sqlite.compile db_handle query start keep_col_info executes a * query query.
compile_simple [Sqlite]
Sqlite.compile_simple db_handle query executes a query query.

D
db_close [Sqlite]
Sqlite.db_close db_handle Closes a database file and invalidates the handle.
db_open [Sqlite]
Sqlite.db_open filename opens the database file filename and returns a database handle.
db_rc [Sqlite]
Sqlite.db_rc db_handle returns the last error code for operations on db_handle.

E
exec [Sqlite]
Sqlite.exec db_handle query executes a query query.

F
finalize [Sqlite]
Sqlite.finalize vm finalizes virtual machine manually thus invalidating the vm handle.

L
last_insert_rowid [Sqlite]
Sqlite.last_insert_rowid db_handle returns rowid of the last inserted row.

S
step [Sqlite]
Sqlite.step vm default_value executes a query query and returns the next row of result in the form of string array.
step_opt [Sqlite]
Sqlite.step_opt vm executes a query query and returns the next row of result in the form of string option array.
step_simple [Sqlite]
This function is equal to Sqlite.step except that it raises Sqlite_null_value exception when result row contains any NULL values instead of replacing them with some kind of default value.

V
vm_rc [Sqlite]
Sqlite.vm_rc vm returns the last error code for operations on vm.