Lines Matching defs:sqlite3_module
6092 typedef struct sqlite3_module sqlite3_module; typedef
6110 struct sqlite3_module { struct
6111 int iVersion;
6112 int (*xCreate)(sqlite3*, void *pAux,
6115 int (*xConnect)(sqlite3*, void *pAux,
6118 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
6119 int (*xDisconnect)(sqlite3_vtab *pVTab);
6120 int (*xDestroy)(sqlite3_vtab *pVTab);
6121 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
6122 int (*xClose)(sqlite3_vtab_cursor*);
6123 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
6125 int (*xNext)(sqlite3_vtab_cursor*);
6126 int (*xEof)(sqlite3_vtab_cursor*);
6127 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
6128 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
6129 int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *);
6130 int (*xBegin)(sqlite3_vtab *pVTab);
6131 int (*xSync)(sqlite3_vtab *pVTab);
6132 int (*xCommit)(sqlite3_vtab *pVTab);
6133 int (*xRollback)(sqlite3_vtab *pVTab);
6134 int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,
6137 int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);
6140 int (*xSavepoint)(sqlite3_vtab *pVTab, int);
6141 int (*xRelease)(sqlite3_vtab *pVTab, int);
6142 int (*xRollbackTo)(sqlite3_vtab *pVTab, int);