Lines Matching defs:SqliteDb
126 typedef struct SqliteDb SqliteDb; typedef
188 struct SqliteDb { struct
189 sqlite3 *db; /* The "real" database structure. MUST BE FIRST */
190 Tcl_Interp *interp; /* The interpreter used for this database */
191 char *zBusy; /* The busy callback routine */
192 char *zCommit; /* The commit hook callback routine */
193 char *zTrace; /* The trace callback routine */
194 char *zTraceV2; /* The trace_v2 callback routine */
195 char *zProfile; /* The profile callback routine */
196 char *zProgress; /* The progress callback routine */
197 char *zBindFallback; /* Callback to invoke on a binding miss */
198 char *zAuth; /* The authorization callback routine */
199 int disableAuth; /* Disable the authorizer if it exists */
200 char *zNull; /* Text to substitute for an SQL NULL value */
201 SqlFunc *pFunc; /* List of SQL functions */
202 Tcl_Obj *pUpdateHook; /* Update hook script (if any) */
203 Tcl_Obj *pPreUpdateHook; /* Pre-update hook script (if any) */
227 SqliteDb *pDb; /* Associated database connection */ argument