Lines Matching defs:DbdataCursor
11506 typedef struct DbdataCursor DbdataCursor; typedef
11509 struct DbdataCursor { struct
11510 sqlite3_vtab_cursor base; /* Base class. Must be first */
11511 sqlite3_stmt *pStmt; /* For fetching database pages */
11513 int iPgno; /* Current page number */
11514 u8 *aPage; /* Buffer containing page */
11515 int nPage; /* Size of aPage[] in bytes */
11516 int nCell; /* Number of cells on aPage[] */
11517 int iCell; /* Current cell number */
11518 int bOnePage; /* True to stop after one page */
11519 int szDb;
11520 sqlite3_int64 iRowid;
11523 u8 *pRec; /* Buffer containing current record */
11524 sqlite3_int64 nRec; /* Size of pRec[] in bytes */
11525 sqlite3_int64 nHdr; /* Size of header in bytes */
11526 int iField; /* Current field number */
11527 u8 *pHdrPtr;
11528 u8 *pPtr;
11529 u32 enc; /* Text encoding */
11531 sqlite3_int64 iIntkey; /* Integer key value */