Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/sqlite3/
H A Dsqlite3.c8817 typedef struct sqlite3_str sqlite3_str; typedef
18928 struct sqlite3_str { struct
18929 sqlite3 *db; /* Optional database for lookaside. Can be NULL */
18930 char *zText; /* The string collected so far */
18931 u32 nAlloc; /* Amount of space allocated in zText */
18932 u32 mxAlloc; /* Maximum allowed allocation. 0 for no malloc usage */
18933 u32 nChar; /* Length of the string so far */
18934 u8 accError; /* SQLITE_NOMEM or SQLITE_TOOBIG */
18935 u8 printfFlags; /* SQLITE_PRINTF flags below */
H A Dsqlite3.h7778 typedef struct sqlite3_str sqlite3_str; typedef