Lines Matching defs:sqlite3_module
7295 typedef struct sqlite3_module sqlite3_module; typedef
7313 struct sqlite3_module { struct
7314 int iVersion;
7315 int (*xCreate)(sqlite3*, void *pAux,
7318 int (*xConnect)(sqlite3*, void *pAux,
7321 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
7322 int (*xDisconnect)(sqlite3_vtab *pVTab);
7323 int (*xDestroy)(sqlite3_vtab *pVTab);
7324 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
7325 int (*xClose)(sqlite3_vtab_cursor*);
7326 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
7328 int (*xNext)(sqlite3_vtab_cursor*);
7329 int (*xEof)(sqlite3_vtab_cursor*);
7330 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
7331 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
7332 int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *);
7333 int (*xBegin)(sqlite3_vtab *pVTab);
7334 int (*xSync)(sqlite3_vtab *pVTab);
7335 int (*xCommit)(sqlite3_vtab *pVTab);
7336 int (*xRollback)(sqlite3_vtab *pVTab);
7337 int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,
7340 int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);
7343 int (*xSavepoint)(sqlite3_vtab *pVTab, int);
7344 int (*xRelease)(sqlite3_vtab *pVTab, int);
7345 int (*xRollbackTo)(sqlite3_vtab *pVTab, int);
7348 int (*xShadowName)(const char*);
7351 int (*xIntegrity)(sqlite3_vtab *pVTab, const char *zSchema,