Home
last modified time | relevance | path

Searched defs:sqlite3_value (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3.c4839 typedef struct sqlite3_value sqlite3_value; typedef
23238 struct sqlite3_value { struct
23239 union MemValue {
23245 } u;
23246 char *z; /* String or BLOB value */
23247 int n; /* Number of characters in string value, excluding '\0' */
23248 u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */
23249 u8 enc; /* SQLITE_UTF8, SQLITE_UTF16BE, SQLITE_UTF16LE */
23250 u8 eSubtype; /* Subtype for this value */
23252 sqlite3 *db; /* The associated database connection */
[all …]
H A Dsqlite3.h4526 typedef struct sqlite3_value sqlite3_value; typedef
H A Dshell.c11218 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), /* OUT: Result */ in zipfileFindFunction() argument