Lines Matching defs:sqlite3_module
7116 typedef struct sqlite3_module sqlite3_module; typedef
7134 struct sqlite3_module { struct
7135 int iVersion;
7136 int (*xCreate)(sqlite3*, void *pAux,
7139 int (*xConnect)(sqlite3*, void *pAux,
7142 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
7143 int (*xDisconnect)(sqlite3_vtab *pVTab);
7144 int (*xDestroy)(sqlite3_vtab *pVTab);
7145 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
7146 int (*xClose)(sqlite3_vtab_cursor*);
7147 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
7149 int (*xNext)(sqlite3_vtab_cursor*);
7150 int (*xEof)(sqlite3_vtab_cursor*);
7151 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
7152 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
7153 int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *);
7154 int (*xBegin)(sqlite3_vtab *pVTab);
7155 int (*xSync)(sqlite3_vtab *pVTab);
7156 int (*xCommit)(sqlite3_vtab *pVTab);
7157 int (*xRollback)(sqlite3_vtab *pVTab);
7158 int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,
7161 int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);
7164 int (*xSavepoint)(sqlite3_vtab *pVTab, int);
7165 int (*xRelease)(sqlite3_vtab *pVTab, int);
7166 int (*xRollbackTo)(sqlite3_vtab *pVTab, int);