Home
last modified time | relevance | path

Searched defs:sqlite3_value (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/sqlite3/
H A Dsqlite3.c4858 typedef struct sqlite3_value sqlite3_value; typedef
23326 struct sqlite3_value { struct
23327 union MemValue {
23333 } u;
23334 char *z; /* String or BLOB value */
23337 u8 enc; /* SQLITE_UTF8, SQLITE_UTF16BE, SQLITE_UTF16LE */
23338 u8 eSubtype; /* Subtype for this value */
23340 sqlite3 *db; /* The associated database connection */
23341 int szMalloc; /* Size of the zMalloc allocation */
23343 char *zMalloc; /* Space to hold MEM_Str or MEM_Blob if szMalloc>0 */
[all …]
H A Dsqlite3.h4545 typedef struct sqlite3_value sqlite3_value; typedef
H A Dshell.c11296 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), /* OUT: Result */ in zipfileFindFunction() argument