Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.h4844 typedef struct sqlite3_value sqlite3_value; typedef
H A Dsqlite3.c5165 typedef struct sqlite3_value sqlite3_value; typedef
24474 struct sqlite3_value { struct
24475 union MemValue {
24481 } u;
24482 char *z; /* String or BLOB value */
24483 int n; /* Number of characters in string value, excluding '\0' */
24484 u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */
24485 u8 enc; /* SQLITE_UTF8, SQLITE_UTF16BE, SQLITE_UTF16LE */
24486 u8 eSubtype; /* Subtype for this value */
24488 sqlite3 *db; /* The associated database connection */
[all …]
H A Dshell.c14100 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), /* OUT: Result */ in zipfileFindFunction() argument