Lines Matching defs:DbdataCursor
12940 typedef struct DbdataCursor DbdataCursor; typedef
12943 struct DbdataCursor { struct
12944 sqlite3_vtab_cursor base; /* Base class. Must be first */
12945 sqlite3_stmt *pStmt; /* For fetching database pages */
12947 int iPgno; /* Current page number */
12948 u8 *aPage; /* Buffer containing page */
12949 int nPage; /* Size of aPage[] in bytes */
12950 int nCell; /* Number of cells on aPage[] */
12951 int iCell; /* Current cell number */
12952 int bOnePage; /* True to stop after one page */
12953 int szDb;
12954 sqlite3_int64 iRowid;
12957 u8 *pRec; /* Buffer containing current record */
12958 sqlite3_int64 nRec; /* Size of pRec[] in bytes */
12959 sqlite3_int64 nHdr; /* Size of header in bytes */
12960 int iField; /* Current field number */
12961 u8 *pHdrPtr;
12962 u8 *pPtr;
12963 u32 enc; /* Text encoding */
12965 sqlite3_int64 iIntkey; /* Integer key value */