Searched defs:sqlite3_module (Results 1 – 1 of 1) sorted by relevance
7066 typedef struct sqlite3_module sqlite3_module; typedef7084 struct sqlite3_module { struct7085 int iVersion;7086 int (*xCreate)(sqlite3*, void *pAux,7089 int (*xConnect)(sqlite3*, void *pAux,7092 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);7093 int (*xDisconnect)(sqlite3_vtab *pVTab);7094 int (*xDestroy)(sqlite3_vtab *pVTab);7095 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);7096 int (*xClose)(sqlite3_vtab_cursor*);[all …]