Lines Matching defs:DbdataCursor
14335 typedef struct DbdataCursor DbdataCursor; typedef
14338 struct DbdataCursor { struct
14339 sqlite3_vtab_cursor base; /* Base class. Must be first */
14340 sqlite3_stmt *pStmt; /* For fetching database pages */
14342 int iPgno; /* Current page number */
14343 u8 *aPage; /* Buffer containing page */
14344 int nPage; /* Size of aPage[] in bytes */
14345 int nCell; /* Number of cells on aPage[] */
14346 int iCell; /* Current cell number */
14347 int bOnePage; /* True to stop after one page */
14348 int szDb;
14349 sqlite3_int64 iRowid;
14352 u8 *pRec; /* Buffer containing current record */
14353 sqlite3_int64 nRec; /* Size of pRec[] in bytes */
14354 sqlite3_int64 nHdr; /* Size of header in bytes */
14355 int iField; /* Current field number */
14356 u8 *pHdrPtr;
14357 u8 *pPtr;
14358 u32 enc; /* Text encoding */
14360 sqlite3_int64 iIntkey; /* Integer key value */