Lines Matching defs:sqlite3_module
7608 typedef struct sqlite3_module sqlite3_module; typedef
7626 struct sqlite3_module { struct
7627 int iVersion;
7628 int (*xCreate)(sqlite3*, void *pAux,
7631 int (*xConnect)(sqlite3*, void *pAux,
7634 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
7635 int (*xDisconnect)(sqlite3_vtab *pVTab);
7636 int (*xDestroy)(sqlite3_vtab *pVTab);
7637 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
7638 int (*xClose)(sqlite3_vtab_cursor*);
7639 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
7641 int (*xNext)(sqlite3_vtab_cursor*);
7642 int (*xEof)(sqlite3_vtab_cursor*);
7643 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
7644 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
7645 int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *);
7646 int (*xBegin)(sqlite3_vtab *pVTab);
7647 int (*xSync)(sqlite3_vtab *pVTab);
7648 int (*xCommit)(sqlite3_vtab *pVTab);
7649 int (*xRollback)(sqlite3_vtab *pVTab);
7650 int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,
7653 int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);
7656 int (*xSavepoint)(sqlite3_vtab *pVTab, int);
7657 int (*xRelease)(sqlite3_vtab *pVTab, int);
7658 int (*xRollbackTo)(sqlite3_vtab *pVTab, int);
7661 int (*xShadowName)(const char*);
7664 int (*xIntegrity)(sqlite3_vtab *pVTab, const char *zSchema,