Searched defs:sqlite3_value (Results 1 – 3 of 3) sorted by relevance
5381 typedef struct sqlite3_value sqlite3_value; typedef21462 struct sqlite3_value { struct21463 union MemValue {21469 } u;21470 u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */21471 u8 enc; /* SQLITE_UTF8, SQLITE_UTF16BE, SQLITE_UTF16LE */21472 u8 eSubtype; /* Subtype for this value */21473 int n; /* Number of characters in string value, excluding '\0' */21474 char *z; /* String or BLOB value */21476 char *zMalloc; /* Space to hold MEM_Str or MEM_Blob if szMalloc>0 */[all …]
8550 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), /* OUT: Result */ in zipfileFindFunction() argument
4286 typedef struct sqlite3_value sqlite3_value; typedef