Lines Matching defs:SqliteDb
91 typedef struct SqliteDb SqliteDb; typedef
153 struct SqliteDb { struct
154 sqlite3 *db; /* The "real" database structure. MUST BE FIRST */
155 Tcl_Interp *interp; /* The interpreter used for this database */
156 char *zBusy; /* The busy callback routine */
157 char *zCommit; /* The commit hook callback routine */
158 char *zTrace; /* The trace callback routine */
159 char *zTraceV2; /* The trace_v2 callback routine */
160 char *zProfile; /* The profile callback routine */
161 char *zProgress; /* The progress callback routine */
162 char *zBindFallback; /* Callback to invoke on a binding miss */
163 char *zAuth; /* The authorization callback routine */
164 int disableAuth; /* Disable the authorizer if it exists */
165 char *zNull; /* Text to substitute for an SQL NULL value */
166 SqlFunc *pFunc; /* List of SQL functions */
167 Tcl_Obj *pUpdateHook; /* Update hook script (if any) */
168 Tcl_Obj *pPreUpdateHook; /* Pre-update hook script (if any) */
192 SqliteDb *pDb; /* Associated database connection */ argument