Search notes:
SQLite: C Interface
SQLite: Basic demonstration of the c interface
sqlite3_stmt
sqlite3_stmt
is an opaque pointer type without an actual
struct
.
This pointer points at a
Vdbe
(a virtual machine).
See also
src/sqlite.h.in
,
src/main.c
Links
C-language Interface Specification for SQLite
: a precise and detailed specification of the SQLite3 C API.
Index