Home | History | Annotate | Download | only in sqlite

Lines Matching full:recover

1 Add new virtual table 'recover' to src/ and the amalgamation.
3 Since recover.c is in somewhat active development, it is possible that
9 git diff --cached --relative=third_party/sqlite/src --src-prefix='' --dst-prefix='' > third_party/sqlite/recover.patch
10 [--cached because otherwise the diff adding recover.c wasn't generated.]
20 + $(TOP)/src/recover.c \
32 +/* Begin recover.patch for Chromium */
34 +** Call to initialize the recover virtual-table modules (see recover.c).
41 +/* End recover.patch for Chromium */
54 + recover.c
59 diff --git src/recover.c src/recover.c
63 +++ src/recover.c
76 +/* Implements a virtual table "recover" which can be used to recover
88 + * to recover the data from teh table, you could do something like:
98 + * CREATE VIRTUAL TABLE temp.recover_Stuff using recover(
191 + * type is the type provided to the recover module, schema is the
1573 +typedef struct Recover Recover;
1574 +struct Recover {
1584 +static void recoverRelease(Recover *pRecover){
1631 + recoverRelease((Recover*)pVtab);
1637 + recoverRelease((Recover*)pVtab);
1650 + Recover *pRecover = (Recover*)pVTab;
1718 +static int recoverValidateLeafCell(Recover *pRecover, RecoverCursor *pCursor){
1748 + Recover *pRecover = (Recover*)pCursor->base.pVtab;
1777 + Recover *pRecover = (Recover*)pCursor->base.pVtab;
1800 + Recover *pRecover = (Recover*)pCursor->base.pVtab;
1909 + return sqlite3_create_module_v2(db, "recover", &recoverModule, NULL, 0);
2116 + Recover *pRecover; /* Virtual table structure being created. */
2124 + *pzErr = sqlite3_mprintf("recover table must be in temp database");
2134 + pRecover = sqlite3_malloc(sizeof(Recover));