Lines Matching defs:DbdataCursor
11370 typedef struct DbdataCursor DbdataCursor; typedef
11373 struct DbdataCursor { struct
11374 sqlite3_vtab_cursor base; /* Base class. Must be first */
11375 sqlite3_stmt *pStmt; /* For fetching database pages */
11377 int iPgno; /* Current page number */
11378 u8 *aPage; /* Buffer containing page */
11379 int nPage; /* Size of aPage[] in bytes */
11380 int nCell; /* Number of cells on aPage[] */
11381 int iCell; /* Current cell number */
11382 int bOnePage; /* True to stop after one page */
11383 int szDb;
11384 sqlite3_int64 iRowid;
11387 u8 *pRec; /* Buffer containing current record */
11388 int nRec; /* Size of pRec[] in bytes */
11389 int nHdr; /* Size of header in bytes */
11390 int iField; /* Current field number */
11391 u8 *pHdrPtr;
11392 u8 *pPtr;
11394 sqlite3_int64 iIntkey; /* Integer key value */