Lines Matching defs:sqlite3_module
7285 typedef struct sqlite3_module sqlite3_module; typedef
7303 struct sqlite3_module { struct
7304 int iVersion;
7305 int (*xCreate)(sqlite3*, void *pAux,
7308 int (*xConnect)(sqlite3*, void *pAux,
7311 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
7312 int (*xDisconnect)(sqlite3_vtab *pVTab);
7313 int (*xDestroy)(sqlite3_vtab *pVTab);
7314 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
7315 int (*xClose)(sqlite3_vtab_cursor*);
7316 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
7318 int (*xNext)(sqlite3_vtab_cursor*);
7319 int (*xEof)(sqlite3_vtab_cursor*);
7320 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
7321 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
7322 int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *);
7323 int (*xBegin)(sqlite3_vtab *pVTab);
7324 int (*xSync)(sqlite3_vtab *pVTab);
7325 int (*xCommit)(sqlite3_vtab *pVTab);
7326 int (*xRollback)(sqlite3_vtab *pVTab);
7327 int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,
7330 int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);
7333 int (*xSavepoint)(sqlite3_vtab *pVTab, int);
7334 int (*xRelease)(sqlite3_vtab *pVTab, int);
7335 int (*xRollbackTo)(sqlite3_vtab *pVTab, int);
7338 int (*xShadowName)(const char*);
7341 int (*xIntegrity)(sqlite3_vtab *pVTab, const char *zSchema,