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