Home
last modified time | relevance | path

Searched defs:sqlite3_str (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3.c8710 typedef struct sqlite3_str sqlite3_str; typedef
20031 struct sqlite3_str { struct
20032 sqlite3 *db; /* Optional database for lookaside. Can be NULL */
20033 char *zText; /* The string collected so far */
20034 u32 nAlloc; /* Amount of space allocated in zText */
20035 u32 mxAlloc; /* Maximum allowed allocation. 0 for no malloc usage */
20036 u32 nChar; /* Length of the string so far */
20037 u8 accError; /* SQLITE_NOMEM or SQLITE_TOOBIG */
20038 u8 printfFlags; /* SQLITE_PRINTF flags below */
H A Dsqlite3.h8397 typedef struct sqlite3_str sqlite3_str; typedef