Lines Matching defs:ZipfileTab
7127 typedef struct ZipfileTab ZipfileTab; typedef
7128 struct ZipfileTab { struct
7129 sqlite3_vtab base; /* Base class - must be first */
7130 char *zFile; /* Zip file this table accesses (may be NULL) */
7131 sqlite3 *db; /* Host database connection */
7132 u8 *aBuffer; /* Temporary buffer used for various tasks */
7134 ZipfileCsr *pCsrList; /* List of cursors */
7135 i64 iNextCsrid;
7138 ZipfileEntry *pFirstEntry; /* Linked list of all files (if pWriteFd!=0) */
7139 ZipfileEntry *pLastEntry; /* Last element in pFirstEntry list */
7140 FILE *pWriteFd; /* File handle open on zip archive */
7141 i64 szCurrent; /* Current size of zip archive */
7142 i64 szOrig; /* Size of archive at start of transaction */