Structure to describe ZIP virtual table cursor. More...
Data Fields | |
sqlite3_vtab_cursor | cursor |
SQLite virtual table cursor. | |
int | pos |
ZIP file position. | |
int | usematches |
For filter EQ. | |
int | nmatches |
For filter EQ. | |
int * | matches |
For filter EQ. | |
sqlite3_vtab_cursor zip_cursor::cursor |
SQLite virtual table cursor.
Definition at line 122 of file zipfile.c.
Referenced by zip_vtab_column(), zip_vtab_eof(), zip_vtab_filter(), and zip_vtab_open().
int* zip_cursor::matches |
For filter EQ.
Definition at line 126 of file zipfile.c.
Referenced by zip_vtab_close(), zip_vtab_column(), zip_vtab_filter(), zip_vtab_open(), and zip_vtab_rowid().
int zip_cursor::nmatches |
For filter EQ.
Definition at line 125 of file zipfile.c.
Referenced by zip_vtab_column(), zip_vtab_eof(), zip_vtab_filter(), zip_vtab_next(), zip_vtab_open(), and zip_vtab_rowid().
int zip_cursor::pos |
ZIP file position.
Definition at line 123 of file zipfile.c.
Referenced by zip_vtab_column(), zip_vtab_eof(), zip_vtab_filter(), zip_vtab_next(), zip_vtab_open(), and zip_vtab_rowid().
int zip_cursor::usematches |
For filter EQ.
Definition at line 124 of file zipfile.c.
Referenced by zip_vtab_column(), zip_vtab_eof(), zip_vtab_filter(), zip_vtab_open(), and zip_vtab_rowid().