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