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