sqlite3_module

Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Members

Variables

iVersion
int iVersion;
Undocumented in source.
xBegin
int function(sqlite3_vtab* pVTab) xBegin;
Undocumented in source.
xBestIndex
int function(sqlite3_vtab* pVTab, sqlite3_index_info*) xBestIndex;
Undocumented in source.
xClose
int function(sqlite3_vtab_cursor*) xClose;
Undocumented in source.
xColumn
int function(sqlite3_vtab_cursor*, sqlite3_context*, int) xColumn;
Undocumented in source.
xCommit
int function(sqlite3_vtab* pVTab) xCommit;
Undocumented in source.
xConnect
int function(sqlite3*, void* pAux, int argc, const(char*)* argv, sqlite3_vtab** ppVTab, char**) xConnect;
Undocumented in source.
xCreate
int function(sqlite3*, void* pAux, int argc, const(char*)* argv, sqlite3_vtab** ppVTab, char**) xCreate;
Undocumented in source.
xDestroy
int function(sqlite3_vtab* pVTab) xDestroy;
Undocumented in source.
xDisconnect
int function(sqlite3_vtab* pVTab) xDisconnect;
Undocumented in source.
xEof
int function(sqlite3_vtab_cursor*) xEof;
Undocumented in source.
xFilter
int function(sqlite3_vtab_cursor*, int idxNum, const(char)* idxStr, int argc, sqlite3_value** argv) xFilter;
Undocumented in source.
xFindFunction
int function(sqlite3_vtab* pVtab, int nArg, const(char)* zName, void function(sqlite3_context*, int, sqlite3_value**)* pxFunc, void** ppArg) xFindFunction;
Undocumented in source.
xNext
int function(sqlite3_vtab_cursor*) xNext;
Undocumented in source.
xOpen
int function(sqlite3_vtab* pVTab, sqlite3_vtab_cursor** ppCursor) xOpen;
Undocumented in source.
xRelease
int function(sqlite3_vtab* pVTab, int) xRelease;
Undocumented in source.
xRename
int function(sqlite3_vtab* pVtab, const(char)* zNew) xRename;
Undocumented in source.
xRollback
int function(sqlite3_vtab* pVTab) xRollback;
Undocumented in source.
xRollbackTo
int function(sqlite3_vtab* pVTab, int) xRollbackTo;
Undocumented in source.
xRowid
int function(sqlite3_vtab_cursor*, sqlite3_int64* pRowid) xRowid;
Undocumented in source.
xSavepoint
int function(sqlite3_vtab* pVTab, int) xSavepoint;
Undocumented in source.
xSync
int function(sqlite3_vtab* pVTab) xSync;
Undocumented in source.
xUpdate
int function(sqlite3_vtab*, int, sqlite3_value**, sqlite3_int64*) xUpdate;
Undocumented in source.

Meta