Lines Matching defs:sqlite3_module
7270 typedef struct sqlite3_module sqlite3_module; typedef
7288 struct sqlite3_module { struct
7289 int iVersion;
7290 int (*xCreate)(sqlite3*, void *pAux,
7293 int (*xConnect)(sqlite3*, void *pAux,
7296 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
7297 int (*xDisconnect)(sqlite3_vtab *pVTab);
7298 int (*xDestroy)(sqlite3_vtab *pVTab);
7299 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
7300 int (*xClose)(sqlite3_vtab_cursor*);
7301 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
7303 int (*xNext)(sqlite3_vtab_cursor*);
7304 int (*xEof)(sqlite3_vtab_cursor*);
7305 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
7306 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
7307 int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *);
7308 int (*xBegin)(sqlite3_vtab *pVTab);
7309 int (*xSync)(sqlite3_vtab *pVTab);
7310 int (*xCommit)(sqlite3_vtab *pVTab);
7311 int (*xRollback)(sqlite3_vtab *pVTab);
7312 int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,
7315 int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);
7318 int (*xSavepoint)(sqlite3_vtab *pVTab, int);
7319 int (*xRelease)(sqlite3_vtab *pVTab, int);
7320 int (*xRollbackTo)(sqlite3_vtab *pVTab, int);
7323 int (*xShadowName)(const char*);
7326 int (*xIntegrity)(sqlite3_vtab *pVTab, const char *zSchema,