Searched defs:sqlite3_value (Results 1 – 3 of 3) sorted by relevance
5059 typedef struct sqlite3_value sqlite3_value; typedef23812 struct sqlite3_value { struct23813 union MemValue {23819 } u;23820 char *z; /* String or BLOB value */23821 int n; /* Number of characters in string value, excluding '\0' */23822 u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */23823 u8 enc; /* SQLITE_UTF8, SQLITE_UTF16BE, SQLITE_UTF16LE */23824 u8 eSubtype; /* Subtype for this value */23826 sqlite3 *db; /* The associated database connection */[all …]
4740 typedef struct sqlite3_value sqlite3_value; typedef
12135 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), /* OUT: Result */ in zipfileFindFunction() argument