Home
last modified time | relevance | path

Searched defs:sqlite3_context (Results 1 – 2 of 2) sorted by relevance

/minix3/external/public-domain/sqlite/dist/
H A Dsqlite3.c3320 typedef struct sqlite3_context sqlite3_context; typedef
13859 struct sqlite3_context { struct
13860 FuncDef *pFunc; /* Pointer to function information. MUST BE FIRST */
13861 Mem s; /* The return value is stored here */
13862 Mem *pMem; /* Memory cell used to store aggregate context */
13863 CollSeq *pColl; /* Collating sequence */
13864 Vdbe *pVdbe; /* The VM that owns this context */
13865 int iOp; /* Instruction number of OP_Function */
13866 int isError; /* Error code returned by the function. */
13867 u8 skipFlag; /* Skip skip accumulator loading if true */
[all …]
H A Dsqlite3.h3292 typedef struct sqlite3_context sqlite3_context; typedef