Structure for dump callback. More...
Data Fields | |
sqlite3 * | db |
SQLite database pointer. | |
int | with_schema |
if true, output schema | |
int | quote_mode |
mode for quoting data | |
char * | where |
optional where clause of dump | |
int | nlines |
counter for output lines | |
int | indent |
current indent level | |
FILE * | out |
output file pointer | |
sqlite3* DUMP_DATA::db |
SQLite database pointer.
Definition at line 917 of file impexp.c.
Referenced by dump_cb(), export_csv_func(), export_func(), export_xml_func(), impexp_export_csv(), impexp_export_sql(), impexp_export_xml(), schema_dump(), and table_dump().
int DUMP_DATA::indent |
current indent level
Definition at line 922 of file impexp.c.
Referenced by dump_cb(), export_csv_func(), export_func(), export_xml_func(), impexp_export_csv(), impexp_export_xml(), and indent().
int DUMP_DATA::nlines |
counter for output lines
Definition at line 921 of file impexp.c.
Referenced by dump_cb(), export_csv_func(), export_func(), export_xml_func(), impexp_export_csv(), impexp_export_sql(), impexp_export_xml(), and table_dump().
FILE* DUMP_DATA::out |
output file pointer
Definition at line 923 of file impexp.c.
Referenced by dump_cb(), export_csv_func(), export_func(), export_xml_func(), impexp_export_csv(), impexp_export_sql(), impexp_export_xml(), indent(), quote_xml_str(), and table_dump().
int DUMP_DATA::quote_mode |
mode for quoting data
Definition at line 919 of file impexp.c.
Referenced by dump_cb(), export_csv_func(), export_func(), export_xml_func(), impexp_export_csv(), impexp_export_xml(), and table_dump().
char* DUMP_DATA::where |
optional where clause of dump
Definition at line 920 of file impexp.c.
Referenced by dump_cb(), export_csv_func(), export_func(), export_xml_func(), impexp_export_csv(), impexp_export_sql(), and impexp_export_xml().
int DUMP_DATA::with_schema |
if true, output schema
Definition at line 918 of file impexp.c.
Referenced by dump_cb(), export_csv_func(), export_func(), export_xml_func(), impexp_export_csv(), impexp_export_sql(), and impexp_export_xml().