Structure to describe a CSV virtual table. More...
Data Fields | |
| sqlite3_vtab | vtab |
| SQLite virtual table. More... | |
| csv_file * | csv |
| CSV file handle. More... | |
| int | convert |
| convert flags More... | |
| char | coltypes [1] |
| column types More... | |
Structure to describe a CSV virtual table.
Definition at line 73 of file csvtable.c.
| char csv_vtab::coltypes[1] |
column types
Definition at line 77 of file csvtable.c.
Referenced by csv_vtab_column(), and csv_vtab_connect().
| int csv_vtab::convert |
convert flags
Definition at line 76 of file csvtable.c.
Referenced by csv_vtab_column(), and csv_vtab_connect().
| csv_file* csv_vtab::csv |
CSV file handle.
Definition at line 75 of file csvtable.c.
Referenced by csv_vtab_column(), csv_vtab_connect(), csv_vtab_disconnect(), csv_vtab_eof(), csv_vtab_filter(), csv_vtab_next(), and csv_vtab_open().
| sqlite3_vtab csv_vtab::vtab |