Lines Matching defs:SqliteDb
115 typedef struct SqliteDb SqliteDb; typedef
177 struct SqliteDb { struct
178 sqlite3 *db; /* The "real" database structure. MUST BE FIRST */
179 Tcl_Interp *interp; /* The interpreter used for this database */
180 char *zBusy; /* The busy callback routine */
181 char *zCommit; /* The commit hook callback routine */
182 char *zTrace; /* The trace callback routine */
183 char *zTraceV2; /* The trace_v2 callback routine */
184 char *zProfile; /* The profile callback routine */
185 char *zProgress; /* The progress callback routine */
186 char *zBindFallback; /* Callback to invoke on a binding miss */
187 char *zAuth; /* The authorization callback routine */
188 int disableAuth; /* Disable the authorizer if it exists */
189 char *zNull; /* Text to substitute for an SQL NULL value */
190 SqlFunc *pFunc; /* List of SQL functions */
191 Tcl_Obj *pUpdateHook; /* Update hook script (if any) */
192 Tcl_Obj *pPreUpdateHook; /* Pre-update hook script (if any) */
216 SqliteDb *pDb; /* Associated database connection */ argument