Lines Matching defs:sqlite3_value
5292 typedef struct sqlite3_value sqlite3_value; typedef
20909 struct sqlite3_value { struct
20910 union MemValue {
20916 } u;
20917 u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */
20918 u8 enc; /* SQLITE_UTF8, SQLITE_UTF16BE, SQLITE_UTF16LE */
20919 u8 eSubtype; /* Subtype for this value */
20920 int n; /* Number of characters in string value, excluding '\0' */
20921 char *z; /* String or BLOB value */
20923 char *zMalloc; /* Space to hold MEM_Str or MEM_Blob if szMalloc>0 */
20924 int szMalloc; /* Size of the zMalloc allocation */
20925 u32 uTemp; /* Transient storage for serial_type in OP_MakeRecord */
20926 sqlite3 *db; /* The associated database connection */
20927 void (*xDel)(void*);/* Destructor for Mem.z - only valid if MEM_Dyn */
20929 Mem *pScopyFrom; /* This Mem is a shallow copy of pScopyFrom */
20930 u16 mScopyFlags; /* flags value immediately after the shallow copy */