Expand description
wasm32-unknown-unknown bindings to the libsqlite3 library.
§Usage
[dependencies]
sqlite-wasm-rs = "0.5"[dependencies]
# Encryption is supported by SQLite3MultipleCiphers
# See <https://utelle.github.io/SQLite3MultipleCiphers>
sqlite-wasm-rs = { version = "0.5", features = ["sqlite3mc"] }use sqlite_wasm_rs as ffi;
fn open_db() {
// open with memory vfs
let mut db = std::ptr::null_mut();
let ret = unsafe {
ffi::sqlite3_open_v2(
c"mem.db".as_ptr().cast(),
&mut db as *mut _,
ffi::SQLITE_OPEN_READWRITE | ffi::SQLITE_OPEN_CREATE,
std::ptr::null()
)
};
assert_eq!(ffi::SQLITE_OK, ret);
}§About VFS
[dependencies]
# It requires sqlite-wasm-rs 0.5.2 or higher to be used,
# for version 0.5.1, use version 0.1 instead.
sqlite-wasm-vfs = "0.2"The following vfs have been implemented:
memory: as the default vfs, no additional conditions are required, store the database in memory.sahpool: ported from sqlite-wasm, store the database in opfs.relaxed-idb: store the database in blocks in indexed db.
§VFS Comparison
| MemoryVFS | SyncAccessHandlePoolVFS | RelaxedIdbVFS | |
|---|---|---|---|
| Storage | RAM | OPFS | IndexedDB |
| Contexts | All | Dedicated Worker | All |
| Multiple connections | :x: | :x: | :x: |
| Full durability | ✅ | ✅ | :x: |
| Relaxed durability | :x: | :x: | ✅ |
| Multi-database transactions | ✅ | ✅ | ✅ |
| No COOP/COEP requirements | ✅ | ✅ | ✅ |
§How to implement a VFS
Here is an example showing how to use sqlite-wasm-rs to implement a simple in-memory VFS, see implement-a-vfs example.
§About multithreading
This library is not thread-safe:
JsValueis not cross-threaded, see https://github.com/rustwasm/wasm-bindgen/pull/955 for details.- sqlite is compiled with
-DSQLITE_THREADSAFE=0.
§Use prebuild libsqlite3.a
We provide the ability to use prebuild libsqlite3.a, cargo provides a links field that can be used to specify which library to link to. With the help of overriding build scripts, you can overriding its configuration in your crate and link sqlite to your prebuild libsqlite3.a.
More see use-prebuild-lib example.
§Minimum supported Rust version (MSRV)
The minimal officially supported rustc version is 1.81.0.
§Extensions
| Extension | About |
|---|---|
| sqlite-vec | A vector search SQLite extension that runs anywhere! |
Contributions are welcome!
§Related Project
diesel: A safe, extensible ORM and Query Builder for Rust.rusqlite: Ergonomic bindings to SQLite for Rust.sqlite-wasm: SQLite Wasm conveniently wrapped as an ES Module.sqlite-web-rs: A SQLite WebAssembly backend for Diesel.wa-sqlite: WebAssembly SQLite with support for browser storage extensions.SQLite3MultipleCiphers: SQLite3 encryption extension with support for multiple ciphers.
Modules§
- utils
- Low-level utilities, traits, and macros for implementing custom SQLite Virtual File Systems (VFS)
Macros§
- bail
- A macro to return a specific SQLite error code if a condition is true.
- check_
option - A macro to safely unwrap an
Option<T>, returning a SQLite error code onNone. - check_
result - A macro to safely unwrap a
Result<T, E>, returning a SQLite error code onErr.
Structs§
- Error
- Raw C-style bindings to the underlying
libsqlite3library. - Fts5
Context - Raw C-style bindings to the underlying
libsqlite3library. - Fts5
Extension Api - Raw C-style bindings to the underlying
libsqlite3library. - Fts5
Phrase Iter - Raw C-style bindings to the underlying
libsqlite3library. - Fts5
Tokenizer - Raw C-style bindings to the underlying
libsqlite3library. - MemVfs
Util - In-memory VFS implementation. MemVfs management tool.
- Wasm
OsCallback - Wasm platform implementation
- fts5_
api - Raw C-style bindings to the underlying
libsqlite3library. - fts5_
tokenizer - Raw C-style bindings to the underlying
libsqlite3library. - fts5_
tokenizer_ v2 - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3
- Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
api_ routines - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
backup - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
blob - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
changegroup - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
changeset_ iter - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
context - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
file - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
index_ constraint - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
index_ constraint_ usage - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
index_ info - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
index_ orderby - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
io_ methods - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
mem_ methods - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
module - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
mutex - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
mutex_ methods - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
pcache - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
pcache_ methods - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
pcache_ methods2 - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
pcache_ page - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
rebaser - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
rtree_ geometry - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
rtree_ query_ info - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
session - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
snapshot - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
stmt - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
str - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
value - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
vfs - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
vtab - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
vtab_ cursor - Raw C-style bindings to the underlying
libsqlite3library.
Enums§
- Error
Code - Raw C-style bindings to the underlying
libsqlite3library. Error Codes - MemVfs
Error - In-memory VFS implementation.
Constants§
- CARRAY_
BLOB - Raw C-style bindings to the underlying
libsqlite3library. - CARRAY_
DOUBLE - Raw C-style bindings to the underlying
libsqlite3library. - CARRAY_
INT32 - Raw C-style bindings to the underlying
libsqlite3library. - CARRAY_
INT64 - Raw C-style bindings to the underlying
libsqlite3library. - CARRAY_
TEXT - Raw C-style bindings to the underlying
libsqlite3library. - FTS5_
TOKENIZE_ AUX - Raw C-style bindings to the underlying
libsqlite3library. - FTS5_
TOKENIZE_ DOCUMENT - Raw C-style bindings to the underlying
libsqlite3library. - FTS5_
TOKENIZE_ PREFIX - Raw C-style bindings to the underlying
libsqlite3library. - FTS5_
TOKENIZE_ QUERY - Raw C-style bindings to the underlying
libsqlite3library. - FTS5_
TOKEN_ COLOCATED - Raw C-style bindings to the underlying
libsqlite3library. - FULLY_
WITHIN - Raw C-style bindings to the underlying
libsqlite3library. - NOT_
WITHIN - Raw C-style bindings to the underlying
libsqlite3library. - PARTLY_
WITHIN - Raw C-style bindings to the underlying
libsqlite3library. - SQLIT
E3_ TEXT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
ABORT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
ABORT_ ROLLBACK - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
ACCESS_ EXISTS - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
ACCESS_ READ - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
ACCESS_ READWRITE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
ALTER_ TABLE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
ANALYZE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
ANY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
ATTACH - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
AUTH - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
AUTH_ USER - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
BLOB - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
BUSY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
BUSY_ RECOVERY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
BUSY_ SNAPSHOT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
BUSY_ TIMEOUT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CANTOPEN - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CANTOPEN_ CONVPATH - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CANTOPEN_ DIRTYWAL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CANTOPEN_ FULLPATH - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CANTOPEN_ ISDIR - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CANTOPEN_ NOTEMPDIR - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CANTOPEN_ SYMLINK - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CARRAY_ BLOB - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CARRAY_ DOUBLE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CARRAY_ INT32 - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CARRAY_ INT64 - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CARRAY_ TEXT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CHANGEGROUP_ CONFIG_ PATCHSET - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CHANGESETAPPLY_ FKNOACTION - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CHANGESETAPPLY_ IGNORENOOP - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CHANGESETAPPLY_ INVERT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CHANGESETAPPLY_ NOSAVEPOINT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CHANGESETSTART_ INVERT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CHANGESET_ ABORT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CHANGESET_ CONFLICT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CHANGESET_ CONSTRAINT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CHANGESET_ DATA - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CHANGESET_ FOREIGN_ KEY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CHANGESET_ NOTFOUND - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CHANGESET_ OMIT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CHANGESET_ REPLACE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CHECKPOINT_ FULL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CHECKPOINT_ NOOP - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CHECKPOINT_ PASSIVE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CHECKPOINT_ RESTART - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CHECKPOINT_ TRUNCATE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ COVERING_ INDEX_ SCAN - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ GETMALLOC - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ GETMUTEX - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ GETPCACHE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ GETPCACH E2 - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ HEAP - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ LOG - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ LOOKASIDE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ MALLOC - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ MEMDB_ MAXSIZE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ MEMSTATUS - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ MMAP_ SIZE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ MULTITHREAD - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ MUTEX - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ PAGECACHE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ PCACHE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ PCACH E2 - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ PCACHE_ HDRSZ - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ PMASZ - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ ROWID_ IN_ VIEW - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ SCRATCH - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ SERIALIZED - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ SINGLETHREAD - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ SMALL_ MALLOC - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ SORTERREF_ SIZE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ SQLLOG - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ STMTJRNL_ SPILL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ URI - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONFIG_ WIN32_ HEAPSIZE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONSTRAINT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONSTRAINT_ CHECK - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONSTRAINT_ COMMITHOOK - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONSTRAINT_ DATATYPE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONSTRAINT_ FOREIGNKEY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONSTRAINT_ FUNCTION - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONSTRAINT_ NOTNULL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONSTRAINT_ PINNED - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONSTRAINT_ PRIMARYKEY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONSTRAINT_ ROWID - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONSTRAINT_ TRIGGER - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONSTRAINT_ UNIQUE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CONSTRAINT_ VTAB - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
COPY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CORRUPT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CORRUPT_ INDEX - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CORRUPT_ SEQUENCE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CORRUPT_ VTAB - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CREATE_ INDEX - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CREATE_ TABLE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CREATE_ TEMP_ INDEX - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CREATE_ TEMP_ TABLE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CREATE_ TEMP_ TRIGGER - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CREATE_ TEMP_ VIEW - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CREATE_ TRIGGER - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CREATE_ VIEW - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
CREATE_ VTABLE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ DEFENSIVE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ DQS_ DDL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ DQS_ DML - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ ENABLE_ ATTACH_ CREATE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ ENABLE_ ATTACH_ WRITE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ ENABLE_ COMMENTS - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ ENABLE_ FKEY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ ENABLE_ FTS3_ TOKENIZER - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ ENABLE_ LOAD_ EXTENSION - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ ENABLE_ QPSG - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ ENABLE_ TRIGGER - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ ENABLE_ VIEW - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ FP_ DIGITS - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ LEGACY_ ALTER_ TABLE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ LEGACY_ FILE_ FORMAT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ LOOKASIDE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ MAINDBNAME - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ MAX - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ NO_ CKPT_ ON_ CLOSE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ RESET_ DATABASE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ REVERSE_ SCANORDER - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ STMT_ SCANSTATUS - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ TRIGGER_ EQP - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ TRUSTED_ SCHEMA - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBCONFIG_ WRITABLE_ SCHEMA - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBSTATUS_ CACHE_ HIT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBSTATUS_ CACHE_ MISS - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBSTATUS_ CACHE_ SPILL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBSTATUS_ CACHE_ USED - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBSTATUS_ CACHE_ USED_ SHARED - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBSTATUS_ CACHE_ WRITE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBSTATUS_ DEFERRED_ FKS - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBSTATUS_ LOOKASIDE_ HIT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBSTATUS_ LOOKASIDE_ MISS_ FULL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBSTATUS_ LOOKASIDE_ MISS_ SIZE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBSTATUS_ LOOKASIDE_ USED - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBSTATUS_ MAX - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBSTATUS_ SCHEMA_ USED - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBSTATUS_ STMT_ USED - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DBSTATUS_ TEMPBUF_ SPILL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DELETE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DENY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DESERIALIZE_ FREEONCLOSE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DESERIALIZE_ READONLY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DESERIALIZE_ RESIZEABLE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DETACH - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DETERMINISTIC - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DIRECTONLY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DONE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DROP_ INDEX - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DROP_ TABLE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DROP_ TEMP_ INDEX - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DROP_ TEMP_ TABLE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DROP_ TEMP_ TRIGGER - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DROP_ TEMP_ VIEW - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DROP_ TRIGGER - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DROP_ VIEW - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
DROP_ VTABLE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
EMPTY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
ERROR - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
ERROR_ KEY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
ERROR_ MISSING_ COLLSEQ - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
ERROR_ RESERVESIZE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
ERROR_ RETRY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
ERROR_ SNAPSHOT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
ERROR_ UNABLE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FAIL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ BEGIN_ ATOMIC_ WRITE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ BLOCK_ ON_ CONNECT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ BUSYHANDLER - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ CHUNK_ SIZE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ CKPT_ DONE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ CKPT_ START - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ CKSM_ FILE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ COMMIT_ ATOMIC_ WRITE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ COMMIT_ PHASETWO - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ DATA_ VERSION - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ EXTERNAL_ READER - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ FILESTAT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ FILE_ POINTER - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ GET_ LOCKPROXYFILE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ HAS_ MOVED - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ JOURNAL_ POINTER - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ LAST_ ERRNO - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ LOCKSTATE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ LOCK_ TIMEOUT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ MMAP_ SIZE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ NULL_ IO - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ OVERWRITE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ PDB - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ PERSIST_ WAL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ POWERSAFE_ OVERWRITE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ PRAGMA - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ RBU - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ RESERVE_ BYTES - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ RESET_ CACHE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ ROLLBACK_ ATOMIC_ WRITE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ SET_ LOCKPROXYFILE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ SIZE_ HINT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ SIZE_ LIMIT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ SYNC - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ SYNC_ OMITTED - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ TEMPFILENAME - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ TRACE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ VFSNAME - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ VFS_ POINTER - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ WAL_ BLOCK - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ WIN32_ AV_ RETRY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ WIN32_ GET_ HANDLE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ WIN32_ SET_ HANDLE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FCNTL_ ZIPVFS - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FLOAT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FORMAT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FULL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
FUNCTION - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
GET_ LOCKPROXYFILE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IGNORE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
INDEX_ CONSTRAINT_ EQ - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
INDEX_ CONSTRAINT_ FUNCTION - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
INDEX_ CONSTRAINT_ GE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
INDEX_ CONSTRAINT_ GLOB - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
INDEX_ CONSTRAINT_ GT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
INDEX_ CONSTRAINT_ IS - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
INDEX_ CONSTRAINT_ ISNOT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
INDEX_ CONSTRAINT_ ISNOTNULL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
INDEX_ CONSTRAINT_ ISNULL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
INDEX_ CONSTRAINT_ LE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
INDEX_ CONSTRAINT_ LIKE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
INDEX_ CONSTRAINT_ LIMIT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
INDEX_ CONSTRAINT_ LT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
INDEX_ CONSTRAINT_ MATCH - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
INDEX_ CONSTRAINT_ NE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
INDEX_ CONSTRAINT_ OFFSET - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
INDEX_ CONSTRAINT_ REGEXP - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
INDEX_ SCAN_ HEX - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
INDEX_ SCAN_ UNIQUE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
INNOCUOUS - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
INSERT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
INTEGER - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
INTERNAL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
INTERRUPT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOCAP_ ATOMIC - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOCAP_ ATOMI C1K - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOCAP_ ATOMI C2K - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOCAP_ ATOMI C4K - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOCAP_ ATOMI C8K - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOCAP_ ATOMI C16K - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOCAP_ ATOMI C32K - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOCAP_ ATOMI C64K - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOCAP_ ATOMI C512 - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOCAP_ BATCH_ ATOMIC - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOCAP_ IMMUTABLE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOCAP_ POWERSAFE_ OVERWRITE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOCAP_ SAFE_ APPEND - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOCAP_ SEQUENTIAL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOCAP_ SUBPAGE_ READ - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOCAP_ UNDELETABLE_ WHEN_ OPEN - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ ACCESS - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ AUTH - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ BADKEY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ BEGIN_ ATOMIC - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ BLOCKED - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ CHECKRESERVEDLOCK - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ CLOSE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ CODEC - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ COMMIT_ ATOMIC - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ CONVPATH - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ CORRUPTFS - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ DATA - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ DELETE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ DELETE_ NOENT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ DIR_ CLOSE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ DIR_ FSYNC - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ FSTAT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ FSYNC - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ GETTEMPPATH - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ IN_ PAGE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ LOCK - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ MMAP - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ NOMEM - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ RDLOCK - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ READ - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ ROLLBACK_ ATOMIC - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ SEEK - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ SHMLOCK - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ SHMMAP - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ SHMOPEN - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ SHMSIZE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ SHORT_ READ - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ TRUNCATE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ UNLOCK - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ VNODE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
IOERR_ WRITE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
LAST_ ERRNO - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
LIMIT_ ATTACHED - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
LIMIT_ COLUMN - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
LIMIT_ COMPOUND_ SELECT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
LIMIT_ EXPR_ DEPTH - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
LIMIT_ FUNCTION_ ARG - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
LIMIT_ LENGTH - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
LIMIT_ LIKE_ PATTERN_ LENGTH - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
LIMIT_ PARSER_ DEPTH - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
LIMIT_ SQL_ LENGTH - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
LIMIT_ TRIGGER_ DEPTH - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
LIMIT_ VARIABLE_ NUMBER - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
LIMIT_ VDBE_ OP - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
LIMIT_ WORKER_ THREADS - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
LOCKED - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
LOCKED_ SHAREDCACHE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
LOCKED_ VTAB - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
LOCK_ EXCLUSIVE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
LOCK_ NONE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
LOCK_ PENDING - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
LOCK_ RESERVED - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
LOCK_ SHARED - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
MISMATCH - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
MISUSE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
MUTEX_ FAST - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
MUTEX_ RECURSIVE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
MUTEX_ STATIC_ APP1 - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
MUTEX_ STATIC_ APP2 - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
MUTEX_ STATIC_ APP3 - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
MUTEX_ STATIC_ LRU - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
MUTEX_ STATIC_ LRU2 - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
MUTEX_ STATIC_ MAIN - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
MUTEX_ STATIC_ MASTER - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
MUTEX_ STATIC_ MEM - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
MUTEX_ STATIC_ MEM2 - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
MUTEX_ STATIC_ OPEN - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
MUTEX_ STATIC_ PMEM - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
MUTEX_ STATIC_ PRNG - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
MUTEX_ STATIC_ VFS1 - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
MUTEX_ STATIC_ VFS2 - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
MUTEX_ STATIC_ VFS3 - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
NOLFS - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
NOMEM - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
NOTADB - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
NOTFOUND - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
NOTICE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
NOTICE_ RBU - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
NOTICE_ RECOVER_ ROLLBACK - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
NOTICE_ RECOVER_ WAL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
NULL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OK - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OK_ LOAD_ PERMANENTLY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OK_ SYMLINK - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OPEN_ AUTOPROXY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OPEN_ CREATE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OPEN_ DELETEONCLOSE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OPEN_ EXCLUSIVE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OPEN_ EXRESCODE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OPEN_ FULLMUTEX - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OPEN_ MAIN_ DB - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OPEN_ MAIN_ JOURNAL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OPEN_ MASTER_ JOURNAL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OPEN_ MEMORY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OPEN_ NOFOLLOW - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OPEN_ NOMUTEX - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OPEN_ PRIVATECACHE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OPEN_ READONLY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OPEN_ READWRITE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OPEN_ SHAREDCACHE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OPEN_ SUBJOURNAL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OPEN_ SUPER_ JOURNAL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OPEN_ TEMP_ DB - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OPEN_ TEMP_ JOURNAL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OPEN_ TRANSIENT_ DB - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OPEN_ URI - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
OPEN_ WAL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
PERM - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
PRAGMA - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
PREPARE_ DONT_ LOG - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
PREPARE_ FROM_ DDL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
PREPARE_ NORMALIZE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
PREPARE_ NO_ VTAB - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
PREPARE_ PERSISTENT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
PROTOCOL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
RANGE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
READ - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
READONLY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
READONLY_ CANTINIT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
READONLY_ CANTLOCK - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
READONLY_ DBMOVED - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
READONLY_ DIRECTORY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
READONLY_ RECOVERY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
READONLY_ ROLLBACK - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
RECURSIVE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
REINDEX - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
REPLACE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
RESULT_ SUBTYPE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
ROLLBACK - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
ROW - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SAVEPOINT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SCANSTAT_ COMPLEX - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SCANSTAT_ EST - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SCANSTAT_ EXPLAIN - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SCANSTAT_ NAME - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SCANSTAT_ NCYCLE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SCANSTAT_ NLOOP - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SCANSTAT_ NVISIT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SCANSTAT_ PARENTID - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SCANSTAT_ SELECTID - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SCHEMA - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SCM_ BRANCH - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SCM_ DATETIME - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SCM_ TAGS - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SELECT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SELFORDE R1 - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SERIALIZE_ NOCOPY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SESSION_ CONFIG_ STRMSIZE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SESSION_ OBJCONFIG_ ROWID - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SESSION_ OBJCONFIG_ SIZE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SETLK_ BLOCK_ ON_ CONNECT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SET_ LOCKPROXYFILE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SHM_ EXCLUSIVE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SHM_ LOCK - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SHM_ NLOCK - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SHM_ SHARED - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SHM_ UNLOCK - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SOURCE_ ID - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
STATUS_ MALLOC_ COUNT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
STATUS_ MALLOC_ SIZE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
STATUS_ MEMORY_ USED - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
STATUS_ PAGECACHE_ OVERFLOW - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
STATUS_ PAGECACHE_ SIZE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
STATUS_ PAGECACHE_ USED - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
STATUS_ PARSER_ STACK - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
STATUS_ SCRATCH_ OVERFLOW - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
STATUS_ SCRATCH_ SIZE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
STATUS_ SCRATCH_ USED - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
STMTSTATUS_ AUTOINDEX - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
STMTSTATUS_ FILTER_ HIT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
STMTSTATUS_ FILTER_ MISS - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
STMTSTATUS_ FULLSCAN_ STEP - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
STMTSTATUS_ MEMUSED - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
STMTSTATUS_ REPREPARE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
STMTSTATUS_ RUN - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
STMTSTATUS_ SORT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
STMTSTATUS_ VM_ STEP - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SUBTYPE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SYNC_ DATAONLY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SYNC_ FULL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
SYNC_ NORMAL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ ALWAYS - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ ASSERT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ ATOF - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ BENIGN_ MALLOC_ HOOKS - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ BITVEC_ TEST - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ BYTEORDER - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ EXPLAIN_ STMT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ EXTRA_ SCHEMA_ CHECKS - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ FAULT_ INSTALL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ FIRST - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ FK_ NO_ ACTION - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ GETOPT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ IMPOSTER - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ INTERNAL_ FUNCTIONS - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ ISINIT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ ISKEYWORD - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ JSON_ SELFCHECK - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ LAST - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ LOCALTIME_ FAULT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ LOGEST - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ NEVER_ CORRUPT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ ONCE_ RESET_ THRESHOLD - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ OPTIMIZATIONS - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ PARSER_ COVERAGE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ PENDING_ BYTE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ PRNG_ RESET - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ PRNG_ RESTORE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ PRNG_ SAVE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ PRNG_ SEED - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ RESERVE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ RESULT_ INTREAL - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ SCRATCHMALLOC - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ SEEK_ COUNT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ SORTER_ MMAP - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ TRACEFLAGS - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ TUNE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ USELONGDOUBLE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TESTCTRL_ VDBE_ COVERAGE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TEXT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TOOBIG - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TRACE_ CLOSE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TRACE_ PROFILE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TRACE_ ROW - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TRACE_ STMT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TRANSACTION - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TXN_ NONE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TXN_ READ - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TXN_ WRITE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
UPDATE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
UTF8 - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
UTF8_ ZT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
UTF16 - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
UTF16BE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
UTF16LE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
UTF16_ ALIGNED - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
VERSION - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
VERSION_ NUMBER - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
VTAB_ CONSTRAINT_ SUPPORT - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
VTAB_ DIRECTONLY - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
VTAB_ INNOCUOUS - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
VTAB_ USES_ ALL_ SCHEMAS - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
WARNING - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
WARNING_ AUTOINDEX - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
WIN32_ DATA_ DIRECTORY_ TYPE - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
WIN32_ TEMP_ DIRECTORY_ TYPE - Raw C-style bindings to the underlying
libsqlite3library.
Statics§
Functions§
- SQLITE_
STATIC - Raw C-style bindings to the underlying
libsqlite3library. - SQLITE_
TRANSIENT - Raw C-style bindings to the underlying
libsqlite3library. - code_
to_ str - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
aggregate_ ⚠context - sqlite3_
auto_ ⚠extension - sqlite3_
autovacuum_ ⚠pages - sqlite3_
backup_ ⚠finish - sqlite3_
backup_ ⚠init - sqlite3_
backup_ ⚠pagecount - sqlite3_
backup_ ⚠remaining - sqlite3_
backup_ ⚠step - sqlite3_
bind_ ⚠blob - sqlite3_
bind_ ⚠blob64 - sqlite3_
bind_ ⚠double - sqlite3_
bind_ ⚠int - sqlite3_
bind_ ⚠int64 - sqlite3_
bind_ ⚠null - sqlite3_
bind_ ⚠parameter_ count - sqlite3_
bind_ ⚠parameter_ index - sqlite3_
bind_ ⚠parameter_ name - sqlite3_
bind_ ⚠pointer - sqlite3_
bind_ ⚠text - sqlite3_
bind_ ⚠text64 - sqlite3_
bind_ ⚠value - sqlite3_
bind_ ⚠zeroblob - sqlite3_
bind_ ⚠zeroblob64 - sqlite3_
blob_ ⚠bytes - sqlite3_
blob_ ⚠close - sqlite3_
blob_ ⚠open - sqlite3_
blob_ ⚠read - sqlite3_
blob_ ⚠reopen - sqlite3_
blob_ ⚠write - sqlite3_
busy_ ⚠handler - sqlite3_
busy_ ⚠timeout - sqlite3_
cancel_ ⚠auto_ extension - sqlite3_
carray_ ⚠bind - sqlite3_
carray_ ⚠bind_ v2 - sqlite3_
changes ⚠ - sqlite3_
changes64 ⚠ - sqlite3_
clear_ ⚠bindings - sqlite3_
close ⚠ - sqlite3_
collation_ ⚠needed - sqlite3_
column_ ⚠blob - sqlite3_
column_ ⚠bytes - sqlite3_
column_ ⚠count - sqlite3_
column_ ⚠database_ name - sqlite3_
column_ ⚠decltype - sqlite3_
column_ ⚠double - sqlite3_
column_ ⚠int - sqlite3_
column_ ⚠int64 - sqlite3_
column_ ⚠name - sqlite3_
column_ ⚠origin_ name - sqlite3_
column_ ⚠table_ name - sqlite3_
column_ ⚠text - sqlite3_
column_ ⚠type - sqlite3_
column_ ⚠value - sqlite3_
commit_ ⚠hook - sqlite3_
compileoption_ ⚠get - sqlite3_
compileoption_ ⚠used - sqlite3_
complete ⚠ - sqlite3_
config ⚠ - sqlite3_
context_ ⚠db_ handle - sqlite3_
create_ ⚠collation_ v2 - sqlite3_
create_ ⚠filename - sqlite3_
create_ ⚠function_ v2 - sqlite3_
create_ ⚠module_ v2 - sqlite3_
create_ ⚠window_ function - sqlite3_
data_ ⚠count - sqlite3_
database_ ⚠file_ object - sqlite3_
db_ ⚠cacheflush - sqlite3_
db_ ⚠config - sqlite3_
db_ ⚠filename - sqlite3_
db_ ⚠handle - sqlite3_
db_ ⚠mutex - sqlite3_
db_ ⚠name - sqlite3_
db_ ⚠readonly - sqlite3_
db_ ⚠release_ memory - sqlite3_
db_ ⚠status - sqlite3_
db_ ⚠status64 - sqlite3_
declare_ ⚠vtab - sqlite3_
deserialize ⚠ - sqlite3_
drop_ ⚠modules - sqlite3_
enable_ ⚠load_ extension - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
enable_ ⚠shared_ cache - sqlite3_
errcode ⚠ - sqlite3_
errmsg ⚠ - sqlite3_
error_ ⚠offset - sqlite3_
errstr ⚠ - sqlite3_
exec ⚠ - sqlite3_
expanded_ ⚠sql - sqlite3_
extended_ ⚠errcode - sqlite3_
extended_ ⚠result_ codes - sqlite3_
file_ ⚠control - sqlite3_
filename_ ⚠database - sqlite3_
filename_ ⚠journal - sqlite3_
filename_ ⚠wal - sqlite3_
finalize ⚠ - sqlite3_
free ⚠ - sqlite3_
free_ ⚠filename - sqlite3_
free_ ⚠table - sqlite3_
get_ ⚠autocommit - sqlite3_
get_ ⚠auxdata - sqlite3_
get_ ⚠clientdata - sqlite3_
get_ ⚠table - sqlite3_
hard_ ⚠heap_ limit64 - sqlite3_
initialize ⚠ - sqlite3_
interrupt ⚠ - sqlite3_
is_ ⚠interrupted - sqlite3_
keyword_ ⚠check - sqlite3_
keyword_ ⚠count - sqlite3_
keyword_ ⚠name - sqlite3_
last_ ⚠insert_ rowid - sqlite3_
libversion ⚠ - sqlite3_
libversion_ ⚠number - sqlite3_
limit ⚠ - sqlite3_
load_ ⚠extension - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
log ⚠ - sqlite3_
malloc ⚠ - sqlite3_
malloc64 ⚠ - sqlite3_
memory_ ⚠highwater - sqlite3_
memory_ ⚠used - sqlite3_
mprintf ⚠ - sqlite3_
msize ⚠ - sqlite3_
mutex_ ⚠alloc - sqlite3_
mutex_ ⚠enter - sqlite3_
mutex_ ⚠free - sqlite3_
mutex_ ⚠held - sqlite3_
mutex_ ⚠leave - sqlite3_
mutex_ ⚠notheld - sqlite3_
mutex_ ⚠try - sqlite3_
next_ ⚠stmt - sqlite3_
open ⚠ - sqlite3_
open_ ⚠v2 - sqlite3_
os_ ⚠end - sqlite3_
os_ ⚠init - sqlite3_
overload_ ⚠function - sqlite3_
prepare_ ⚠v2 - sqlite3_
prepare_ ⚠v3 - sqlite3_
preupdate_ ⚠blobwrite - sqlite3_
preupdate_ ⚠count - sqlite3_
preupdate_ ⚠depth - sqlite3_
preupdate_ ⚠hook - sqlite3_
preupdate_ ⚠new - sqlite3_
preupdate_ ⚠old - sqlite3_
progress_ ⚠handler - sqlite3_
randomness ⚠ - sqlite3_
realloc ⚠ - sqlite3_
realloc64 ⚠ - sqlite3_
release_ ⚠memory - sqlite3_
reset ⚠ - sqlite3_
reset_ ⚠auto_ extension - sqlite3_
result_ ⚠blob - sqlite3_
result_ ⚠blob64 - sqlite3_
result_ ⚠double - sqlite3_
result_ ⚠error - sqlite3_
result_ ⚠error_ code - sqlite3_
result_ ⚠error_ nomem - sqlite3_
result_ ⚠error_ toobig - sqlite3_
result_ ⚠int - sqlite3_
result_ ⚠int64 - sqlite3_
result_ ⚠null - sqlite3_
result_ ⚠pointer - sqlite3_
result_ ⚠subtype - sqlite3_
result_ ⚠text - sqlite3_
result_ ⚠text64 - sqlite3_
result_ ⚠value - sqlite3_
result_ ⚠zeroblob - sqlite3_
result_ ⚠zeroblob64 - sqlite3_
rollback_ ⚠hook - sqlite3_
rtree_ ⚠geometry_ callback - sqlite3_
rtree_ ⚠query_ callback - sqlite3_
serialize ⚠ - sqlite3_
set_ ⚠authorizer - sqlite3_
set_ ⚠auxdata - sqlite3_
set_ ⚠clientdata - sqlite3_
set_ ⚠errmsg - sqlite3_
set_ ⚠last_ insert_ rowid - sqlite3_
setlk_ ⚠timeout - sqlite3_
shutdown ⚠ - sqlite3_
sleep ⚠ - sqlite3_
snapshot_ ⚠cmp - sqlite3_
snapshot_ ⚠free - sqlite3_
snapshot_ ⚠get - sqlite3_
snapshot_ ⚠open - sqlite3_
snapshot_ ⚠recover - sqlite3_
snprintf ⚠ - sqlite3_
soft_ ⚠heap_ limit - sqlite3_
soft_ ⚠heap_ limit64 - sqlite3_
sourceid ⚠ - sqlite3_
sql ⚠ - sqlite3_
status ⚠ - sqlite3_
status64 ⚠ - sqlite3_
step ⚠ - sqlite3_
stmt_ ⚠busy - sqlite3_
stmt_ ⚠explain - sqlite3_
stmt_ ⚠isexplain - sqlite3_
stmt_ ⚠readonly - sqlite3_
stmt_ ⚠scanstatus - sqlite3_
stmt_ ⚠scanstatus_ reset - sqlite3_
stmt_ ⚠scanstatus_ v2 - sqlite3_
stmt_ ⚠status - sqlite3_
str_ ⚠append - sqlite3_
str_ ⚠appendall - sqlite3_
str_ ⚠appendchar - sqlite3_
str_ ⚠appendf - sqlite3_
str_ ⚠errcode - sqlite3_
str_ ⚠finish - sqlite3_
str_ ⚠free - sqlite3_
str_ ⚠length - sqlite3_
str_ ⚠new - sqlite3_
str_ ⚠reset - sqlite3_
str_ ⚠truncate - sqlite3_
str_ ⚠value - sqlite3_
strglob ⚠ - sqlite3_
stricmp ⚠ - sqlite3_
strlike ⚠ - sqlite3_
strnicmp ⚠ - sqlite3_
system_ ⚠errno - sqlite3_
table_ ⚠column_ metadata - sqlite3_
test_ ⚠control - sqlite3_
threadsafe ⚠ - sqlite3_
total_ ⚠changes - sqlite3_
total_ ⚠changes64 - sqlite3_
trace_ ⚠v2 - sqlite3_
txn_ ⚠state - sqlite3_
unlock_ ⚠notify - sqlite3_
update_ ⚠hook - sqlite3_
uri_ ⚠boolean - sqlite3_
uri_ ⚠int64 - sqlite3_
uri_ ⚠key - sqlite3_
uri_ ⚠parameter - sqlite3_
user_ ⚠data - sqlite3_
value_ ⚠blob - sqlite3_
value_ ⚠bytes - sqlite3_
value_ ⚠double - sqlite3_
value_ ⚠dup - sqlite3_
value_ ⚠encoding - sqlite3_
value_ ⚠free - sqlite3_
value_ ⚠frombind - sqlite3_
value_ ⚠int - sqlite3_
value_ ⚠int64 - sqlite3_
value_ ⚠nochange - sqlite3_
value_ ⚠numeric_ type - sqlite3_
value_ ⚠pointer - sqlite3_
value_ ⚠subtype - sqlite3_
value_ ⚠text - sqlite3_
value_ ⚠type - sqlite3_
vfs_ ⚠find - sqlite3_
vfs_ ⚠register - sqlite3_
vfs_ ⚠unregister - sqlite3_
vtab_ ⚠collation - sqlite3_
vtab_ ⚠config - sqlite3_
vtab_ ⚠distinct - sqlite3_
vtab_ ⚠in - sqlite3_
vtab_ ⚠in_ first - sqlite3_
vtab_ ⚠in_ next - sqlite3_
vtab_ ⚠nochange - sqlite3_
vtab_ ⚠on_ conflict - sqlite3_
vtab_ ⚠rhs_ value - sqlite3_
wal_ ⚠autocheckpoint - sqlite3_
wal_ ⚠checkpoint - sqlite3_
wal_ ⚠checkpoint_ v2 - sqlite3_
wal_ ⚠hook - sqlite3_
win32_ ⚠set_ directory - sqlite3_
win32_ ⚠set_ directory8 - sqlite3changegroup_
add ⚠ - sqlite3changegroup_
add_ ⚠change - sqlite3changegroup_
add_ ⚠strm - sqlite3changegroup_
change_ ⚠begin - sqlite3changegroup_
change_ ⚠blob - sqlite3changegroup_
change_ ⚠double - sqlite3changegroup_
change_ ⚠finish - sqlite3changegroup_
change_ ⚠int64 - sqlite3changegroup_
change_ ⚠null - sqlite3changegroup_
change_ ⚠text - sqlite3changegroup_
config ⚠ - sqlite3changegroup_
delete ⚠ - sqlite3changegroup_
new ⚠ - sqlite3changegroup_
output ⚠ - sqlite3changegroup_
output_ ⚠strm - sqlite3changegroup_
schema ⚠ - sqlite3changeset_
apply ⚠ - sqlite3changeset_
apply_ ⚠strm - sqlite3changeset_
apply_ ⚠v2 - sqlite3changeset_
apply_ ⚠v3 - sqlite3changeset_
apply_ ⚠v2_ strm - sqlite3changeset_
apply_ ⚠v3_ strm - sqlite3changeset_
concat ⚠ - sqlite3changeset_
concat_ ⚠strm - sqlite3changeset_
conflict ⚠ - sqlite3changeset_
finalize ⚠ - sqlite3changeset_
fk_ ⚠conflicts - sqlite3changeset_
invert ⚠ - sqlite3changeset_
invert_ ⚠strm - sqlite3changeset_
new ⚠ - sqlite3changeset_
next ⚠ - sqlite3changeset_
old ⚠ - sqlite3changeset_
op ⚠ - sqlite3changeset_
pk ⚠ - sqlite3changeset_
start ⚠ - sqlite3changeset_
start_ ⚠strm - sqlite3changeset_
start_ ⚠v2 - sqlite3changeset_
start_ ⚠v2_ strm - sqlite3rebaser_
configure ⚠ - sqlite3rebaser_
create ⚠ - sqlite3rebaser_
delete ⚠ - sqlite3rebaser_
rebase ⚠ - sqlite3rebaser_
rebase_ ⚠strm - sqlite3session_
attach ⚠ - sqlite3session_
changeset ⚠ - sqlite3session_
changeset_ ⚠size - sqlite3session_
changeset_ ⚠strm - sqlite3session_
config ⚠ - sqlite3session_
create ⚠ - sqlite3session_
delete ⚠ - sqlite3session_
diff ⚠ - sqlite3session_
enable ⚠ - sqlite3session_
indirect ⚠ - sqlite3session_
isempty ⚠ - sqlite3session_
memory_ ⚠used - sqlite3session_
object_ ⚠config - sqlite3session_
patchset ⚠ - sqlite3session_
patchset_ ⚠strm - sqlite3session_
table_ ⚠filter
Type Aliases§
- fts5_
extension_ function - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
callback - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
destructor_ type - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
filename - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
int64 - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
rtree_ dbl - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
syscall_ ptr - Raw C-style bindings to the underlying
libsqlite3library. - sqlite3_
uint64 - Raw C-style bindings to the underlying
libsqlite3library. - sqlite_
int64 - Raw C-style bindings to the underlying
libsqlite3library. - sqlite_
uint64 - Raw C-style bindings to the underlying
libsqlite3library.