Index of values


A
atomically [Sqlite3EZ]
atomically db f evaluates f db within a SAVEPOINT..RELEASE transaction, which may be nested.

C
changes [Sqlite3EZ]
as Sqlite3.changes

D
db_close [Sqlite3EZ]
immediately close the database.
db_open [Sqlite3EZ]
as Sqlite3.db_open

E
exec [Sqlite3EZ]
execute some imperative SQL statement(s).

L
last_insert_rowid [Sqlite3EZ]
as Sqlite3.last_insert_rowid

M
make_statement [Sqlite3EZ]
prepare a statement from the SQL text.

S
statement_exec [Sqlite3EZ]
bind the given parameters and execute an imperative statement.
statement_finalize [Sqlite3EZ]
immediately finalize the statement, releasing any associated resources.
statement_query [Sqlite3EZ]
statement_query stmt params cons fold init binds the given parameters and executes a query.

T
transact [Sqlite3EZ]
transact db f evaluates f db within a BEGIN..COMMIT transaction.

W
with_db [Sqlite3EZ]
with_db filename f opens a database, applies f, and returns the result.