Struct to represent the data of the Sq3LiteC … More...
#include <Sq3LiteC_def_sq3.h>
Data Fields | ||
union { | ||
struct MkObjectS obj | ||
} | super | |
sqlite3 * | nat | |
internal - link between Sq3LiteS and native library | ||
Struct to represent the data of the Sq3LiteC …
Database Connection Handle …
Each open SQLite database is represented by a pointer to an instance of the opaque structure named "sqlite3". It is useful to think of an Sq3LiteC pointer as an object. The sqlite3_open (), sqlite3_open16 (), and Sq3LiteOpenV2 () interfaces are its constructors, and sqlite3_close () and Sq3LiteCloseV2 () are its destructors. There are many other interfaces (such as Sq3StmtPrepareV2 (), sqlite3_create_function (), and Sq3LiteBusyTimeout () to name but three) that are methods on an Sq3LiteC object.
Reference code from sqlite3:
Definition at line 39 of file Sq3LiteC_def_sq3.h.
sqlite3* Sq3LiteS::nat |
internal - link between Sq3LiteS and native library
Definition at line 50 of file Sq3LiteC_def_sq3.h.
struct MkObjectS Sq3LiteS::obj |
Definition at line 43 of file Sq3LiteC_def_sq3.h.
union { ... } Sq3LiteS::super |