Lines Matching defs:ZipfileTab
9584 typedef struct ZipfileTab ZipfileTab; typedef
9585 struct ZipfileTab { struct
9586 sqlite3_vtab base; /* Base class - must be first */
9587 char *zFile; /* Zip file this table accesses (may be NULL) */
9588 sqlite3 *db; /* Host database connection */
9589 u8 *aBuffer; /* Temporary buffer used for various tasks */
9591 ZipfileCsr *pCsrList; /* List of cursors */
9592 i64 iNextCsrid;
9595 ZipfileEntry *pFirstEntry; /* Linked list of all files (if pWriteFd!=0) */
9596 ZipfileEntry *pLastEntry; /* Last element in pFirstEntry list */
9597 FILE *pWriteFd; /* File handle open on zip archive */
9598 i64 szCurrent; /* Current size of zip archive */
9599 i64 szOrig; /* Size of archive at start of transaction */