Lines Matching defs:sqlite3_module
7502 typedef struct sqlite3_module sqlite3_module; typedef
7520 struct sqlite3_module { struct
7521 int iVersion;
7522 int (*xCreate)(sqlite3*, void *pAux,
7525 int (*xConnect)(sqlite3*, void *pAux,
7528 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
7529 int (*xDisconnect)(sqlite3_vtab *pVTab);
7530 int (*xDestroy)(sqlite3_vtab *pVTab);
7531 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
7532 int (*xClose)(sqlite3_vtab_cursor*);
7533 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
7535 int (*xNext)(sqlite3_vtab_cursor*);
7536 int (*xEof)(sqlite3_vtab_cursor*);
7537 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
7538 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
7539 int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *);
7540 int (*xBegin)(sqlite3_vtab *pVTab);
7541 int (*xSync)(sqlite3_vtab *pVTab);
7542 int (*xCommit)(sqlite3_vtab *pVTab);
7543 int (*xRollback)(sqlite3_vtab *pVTab);
7544 int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,
7547 int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);
7550 int (*xSavepoint)(sqlite3_vtab *pVTab, int);
7551 int (*xRelease)(sqlite3_vtab *pVTab, int);
7552 int (*xRollbackTo)(sqlite3_vtab *pVTab, int);
7555 int (*xShadowName)(const char*);
7558 int (*xIntegrity)(sqlite3_vtab *pVTab, const char *zSchema,