Lines Matching defs:callback_data
421 struct callback_data { struct
422 sqlite3 *db; /* The database */
423 int echoOn; /* True to echo input commands */
424 int statsOn; /* True to display memory stats before each finalize */
425 int cnt; /* Number of records displayed so far */
426 FILE *out; /* Write results here */
427 int nErr; /* Number of errors seen */
428 int mode; /* An output mode setting */
429 int writableSchema; /* True if PRAGMA writable_schema=ON */
430 int showHeader; /* True to show column names in List or Column mode */
431 char *zDestTable; /* Name of destination table when MODE_Insert */
432 char separator[20]; /* Separator character for MODE_List */
433 int colWidth[100]; /* Requested width of each column when in column mode*/
434 int actualWidth[100]; /* Actual width of each column */
435 char nullvalue[20]; /* The text to print when a NULL comes back from
437 struct previous_mode_data explainPrev;
440 char outfile[FILENAME_MAX]; /* Filename for *out */
441 const char *zDbFilename; /* name of the database file */
442 const char *zVfs; /* Name of VFS to use */
443 sqlite3_stmt *pStmt; /* Current statement if any. */
444 FILE *pLog; /* Write log output here */