Lines Matching defs:ZipfileTab
9661 typedef struct ZipfileTab ZipfileTab; typedef
9662 struct ZipfileTab { struct
9663 sqlite3_vtab base; /* Base class - must be first */
9664 char *zFile; /* Zip file this table accesses (may be NULL) */
9665 sqlite3 *db; /* Host database connection */
9666 u8 *aBuffer; /* Temporary buffer used for various tasks */
9668 ZipfileCsr *pCsrList; /* List of cursors */
9669 i64 iNextCsrid;
9672 ZipfileEntry *pFirstEntry; /* Linked list of all files (if pWriteFd!=0) */
9673 ZipfileEntry *pLastEntry; /* Last element in pFirstEntry list */
9674 FILE *pWriteFd; /* File handle open on zip archive */
9675 i64 szCurrent; /* Current size of zip archive */
9676 i64 szOrig; /* Size of archive at start of transaction */