Lines Matching defs:ZipfileTab
6999 typedef struct ZipfileTab ZipfileTab; typedef
7000 struct ZipfileTab { struct
7001 sqlite3_vtab base; /* Base class - must be first */
7002 char *zFile; /* Zip file this table accesses (may be NULL) */
7003 sqlite3 *db; /* Host database connection */
7004 u8 *aBuffer; /* Temporary buffer used for various tasks */
7006 ZipfileCsr *pCsrList; /* List of cursors */
7007 i64 iNextCsrid;
7010 ZipfileEntry *pFirstEntry; /* Linked list of all files (if pWriteFd!=0) */
7011 ZipfileEntry *pLastEntry; /* Last element in pFirstEntry list */
7012 FILE *pWriteFd; /* File handle open on zip archive */
7013 i64 szCurrent; /* Current size of zip archive */
7014 i64 szOrig; /* Size of archive at start of transaction */