Lines Matching defs:sqlite3_value
5281 typedef struct sqlite3_value sqlite3_value; typedef
20864 struct sqlite3_value { struct
20865 union MemValue {
20871 } u;
20872 u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */
20873 u8 enc; /* SQLITE_UTF8, SQLITE_UTF16BE, SQLITE_UTF16LE */
20874 u8 eSubtype; /* Subtype for this value */
20875 int n; /* Number of characters in string value, excluding '\0' */
20876 char *z; /* String or BLOB value */
20878 char *zMalloc; /* Space to hold MEM_Str or MEM_Blob if szMalloc>0 */
20879 int szMalloc; /* Size of the zMalloc allocation */
20880 u32 uTemp; /* Transient storage for serial_type in OP_MakeRecord */
20881 sqlite3 *db; /* The associated database connection */
20882 void (*xDel)(void*);/* Destructor for Mem.z - only valid if MEM_Dyn */
20884 Mem *pScopyFrom; /* This Mem is a shallow copy of pScopyFrom */
20885 u16 mScopyFlags; /* flags value immediately after the shallow copy */