Lines Matching defs:sqlite3_module
4751 typedef struct sqlite3_module sqlite3_module; typedef
4769 struct sqlite3_module { struct
4770 int iVersion;
4771 int (*xCreate)(sqlite3*, void *pAux,
4774 int (*xConnect)(sqlite3*, void *pAux,
4777 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
4778 int (*xDisconnect)(sqlite3_vtab *pVTab);
4779 int (*xDestroy)(sqlite3_vtab *pVTab);
4780 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
4781 int (*xClose)(sqlite3_vtab_cursor*);
4782 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
4784 int (*xNext)(sqlite3_vtab_cursor*);
4785 int (*xEof)(sqlite3_vtab_cursor*);
4786 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
4787 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
4788 int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *);
4789 int (*xBegin)(sqlite3_vtab *pVTab);
4790 int (*xSync)(sqlite3_vtab *pVTab);
4791 int (*xCommit)(sqlite3_vtab *pVTab);
4792 int (*xRollback)(sqlite3_vtab *pVTab);
4793 int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,
4796 int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);
4799 int (*xSavepoint)(sqlite3_vtab *pVTab, int);
4800 int (*xRelease)(sqlite3_vtab *pVTab, int);
4801 int (*xRollbackTo)(sqlite3_vtab *pVTab, int);