Convenience and utility functions for the raw_sqlite3 library.
NOTE: Currently the interface of the module should NOT be considered stable since it's mostly a convenience, high-level functions. Users of the library are expected to use sqltite3_nif module directly to build their own high-level primitives since its interface is as stable as the SQLite C API and is thoroughly type-specced and covered by tests.atom_to_int_flag(X1) -> any()
bind(Stmt, Params) -> any()
bool_to_int(X1) -> any()
close(Db) -> any()
err_to_atom(X1) -> any()
exec(Db, Sql) -> any()
exec(Db, Sql, Params) -> any()
expand_error(OK) -> any()
expand_error(Db, OK) -> any()
fetchall(Stmt) -> any()
fold(Db, Sql, Fun, Acc) -> any()
fold(Db, Sql, Params, Fun, Acc) -> any()
int_to_bool(X) -> any()
make_flags(Atoms) -> any()
map(Db, Sql, Fun) -> any()
map(Db, Sql, Params, Fun) -> any()
open(DbFile) -> any()
open(DbFile, Flags) -> any()
open(DbFile, Flags, Vfs) -> any()
prepare(Db, Sql) -> any()
q(Db, Sql) -> any()
q(Db, Sql, Params) -> any()
step(Stmt) -> any()
with_trxn(Db, F) -> any()
Generated by EDoc