Lines Matching defs:sqlite3_module
5279 typedef struct sqlite3_module sqlite3_module; typedef
5297 struct sqlite3_module { struct
5298 int iVersion;
5299 int (*xCreate)(sqlite3*, void *pAux,
5302 int (*xConnect)(sqlite3*, void *pAux,
5305 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
5306 int (*xDisconnect)(sqlite3_vtab *pVTab);
5307 int (*xDestroy)(sqlite3_vtab *pVTab);
5308 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
5309 int (*xClose)(sqlite3_vtab_cursor*);
5310 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
5312 int (*xNext)(sqlite3_vtab_cursor*);
5313 int (*xEof)(sqlite3_vtab_cursor*);
5314 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
5315 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
5316 int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *);
5317 int (*xBegin)(sqlite3_vtab *pVTab);
5318 int (*xSync)(sqlite3_vtab *pVTab);
5319 int (*xCommit)(sqlite3_vtab *pVTab);
5320 int (*xRollback)(sqlite3_vtab *pVTab);
5321 int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,
5324 int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);
5327 int (*xSavepoint)(sqlite3_vtab *pVTab, int);
5328 int (*xRelease)(sqlite3_vtab *pVTab, int);
5329 int (*xRollbackTo)(sqlite3_vtab *pVTab, int);