Lines Matching defs:sqlite3_value
5024 typedef struct sqlite3_value sqlite3_value; typedef
20134 struct sqlite3_value { struct
20135 union MemValue {
20141 } u;
20142 u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */
20143 u8 enc; /* SQLITE_UTF8, SQLITE_UTF16BE, SQLITE_UTF16LE */
20144 u8 eSubtype; /* Subtype for this value */
20145 int n; /* Number of characters in string value, excluding '\0' */
20146 char *z; /* String or BLOB value */
20148 char *zMalloc; /* Space to hold MEM_Str or MEM_Blob if szMalloc>0 */
20149 int szMalloc; /* Size of the zMalloc allocation */
20150 u32 uTemp; /* Transient storage for serial_type in OP_MakeRecord */
20151 sqlite3 *db; /* The associated database connection */
20152 void (*xDel)(void*);/* Destructor for Mem.z - only valid if MEM_Dyn */
20154 Mem *pScopyFrom; /* This Mem is a shallow copy of pScopyFrom */
20155 u16 mScopyFlags; /* flags value immediately after the shallow copy */