Lines Matching defs:sqlite3_module
5251 typedef struct sqlite3_module sqlite3_module; typedef
5269 struct sqlite3_module { struct
5270 int iVersion;
5271 int (*xCreate)(sqlite3*, void *pAux,
5274 int (*xConnect)(sqlite3*, void *pAux,
5277 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
5278 int (*xDisconnect)(sqlite3_vtab *pVTab);
5279 int (*xDestroy)(sqlite3_vtab *pVTab);
5280 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
5281 int (*xClose)(sqlite3_vtab_cursor*);
5282 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
5284 int (*xNext)(sqlite3_vtab_cursor*);
5285 int (*xEof)(sqlite3_vtab_cursor*);
5286 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
5287 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
5288 int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *);
5289 int (*xBegin)(sqlite3_vtab *pVTab);
5290 int (*xSync)(sqlite3_vtab *pVTab);
5291 int (*xCommit)(sqlite3_vtab *pVTab);
5292 int (*xRollback)(sqlite3_vtab *pVTab);
5293 int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,
5296 int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);
5299 int (*xSavepoint)(sqlite3_vtab *pVTab, int);
5300 int (*xRelease)(sqlite3_vtab *pVTab, int);
5301 int (*xRollbackTo)(sqlite3_vtab *pVTab, int);