C | |
| column_names [Sqlite] | Sqlite.column_names vm returns the column names of the query result.
|
| column_types [Sqlite] | Sqlite.column_types vm returns the column types of query result.
|
| compile [Sqlite] | Sqlite.compile db_handle q_string skip keep_col_info reads
a single query from the string q_string, skipping skip initial
characters, and compiles it.
|
| compile_simple [Sqlite] | Sqlite.compile_simple db_handle q_string compiles a single query,
read from the beginning of the string q_string.
|
D | |
| db_close [Sqlite] | Sqlite.db_close db_handle closes the database file associated with
db_handle and invalidates the handle.
|
| db_open [Sqlite] | Sqlite.db_open f_name opens the database file f_name and
returns a database handle.
|
| db_rc [Sqlite] | Sqlite.db_rc db_handle returns the status code of the last
operation on db_handle.
|
E | |
| exec [Sqlite] | Sqlite.exec db_handle q_string executes the query q_string.
|
F | |
| finalize [Sqlite] | Sqlite.finalize vm finalizes vm explicitly, thus invalidating the
handle.
|
L | |
| last_insert_rowid [Sqlite] | Sqlite.last_insert_rowid db_handle returns the rowid of the last
inserted row.
|
S | |
| step [Sqlite] | Sqlite.step vm default_value executes vm to return the next
row of the result as a string array.
|
| step_opt [Sqlite] | Sqlite.step_opt vm executes vm and returns the next row
of the result as a string option array.
|
| step_simple [Sqlite] | Sqlite.step_simple is the same as Sqlite.step, except that it
raises a Sqlite_null_value exception if the result row contains a
null value, instead of replacing it with a default value.
|
V | |
| vm_rc [Sqlite] | Sqlite.vm_rc vm returns the status code of the last operation on vm.
|