MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / sqlite3_recover_init_sql

Function sqlite3_recover_init_sql

modules/dasSQLITE/sqlite/shell.c:16205–16212  ·  view source on GitHub ↗

** Initialize a recovery handle that returns recovered data in the ** form of SQL statements via a callback. */

Source from the content-addressed store, hash-verified

16203** form of SQL statements via a callback.
16204*/
16205sqlite3_recover *sqlite3_recover_init_sql(
16206 sqlite3* db,
16207 const char *zDb,
16208 int (*xSql)(void*, const char*),
16209 void *pSqlCtx
16210){
16211 return recoverInit(db, zDb, 0, xSql, pSqlCtx);
16212}
16213
16214/*
16215** Return the handle error message, if any.

Callers 1

recoverDatabaseCmdFunction · 0.85

Calls 1

recoverInitFunction · 0.85

Tested by

no test coverage detected