Lines Matching defs:sqlite3_module
5675 typedef struct sqlite3_module sqlite3_module; typedef
5693 struct sqlite3_module { struct
5694 int iVersion;
5695 int (*xCreate)(sqlite3*, void *pAux,
5698 int (*xConnect)(sqlite3*, void *pAux,
5701 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
5702 int (*xDisconnect)(sqlite3_vtab *pVTab);
5703 int (*xDestroy)(sqlite3_vtab *pVTab);
5704 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
5705 int (*xClose)(sqlite3_vtab_cursor*);
5706 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
5708 int (*xNext)(sqlite3_vtab_cursor*);
5709 int (*xEof)(sqlite3_vtab_cursor*);
5710 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
5711 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
5712 int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *);
5713 int (*xBegin)(sqlite3_vtab *pVTab);
5714 int (*xSync)(sqlite3_vtab *pVTab);
5715 int (*xCommit)(sqlite3_vtab *pVTab);
5716 int (*xRollback)(sqlite3_vtab *pVTab);
5717 int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,
5720 int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);
5723 int (*xSavepoint)(sqlite3_vtab *pVTab, int);
5724 int (*xRelease)(sqlite3_vtab *pVTab, int);
5725 int (*xRollbackTo)(sqlite3_vtab *pVTab, int);