Lines Matching defs:sqlite3_value
5059 typedef struct sqlite3_value sqlite3_value; typedef
23813 struct sqlite3_value { struct
23814 union MemValue {
23820 } u;
23821 char *z; /* String or BLOB value */
23822 int n; /* Number of characters in string value, excluding '\0' */
23823 u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */
23824 u8 enc; /* SQLITE_UTF8, SQLITE_UTF16BE, SQLITE_UTF16LE */
23825 u8 eSubtype; /* Subtype for this value */
23827 sqlite3 *db; /* The associated database connection */
23828 int szMalloc; /* Size of the zMalloc allocation */
23829 u32 uTemp; /* Transient storage for serial_type in OP_MakeRecord */
23830 char *zMalloc; /* Space to hold MEM_Str or MEM_Blob if szMalloc>0 */
23831 void (*xDel)(void*);/* Destructor for Mem.z - only valid if MEM_Dyn */
23855 ** sqlite3_value_pointer(). argument