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