Lines Matching defs:recoverMPrintf
13184 static char *recoverMPrintf(sqlite3_recover *p, const char *zFmt, ...){
13534 char *z2 = recoverMPrintf(p, "PRAGMA %s = %Q", zPrag, zArg);
13622 char *zSql = recoverMPrintf(p, "ATTACH %Q AS recovery;", p->zStateDb);
13790 zSql = (const char*)(zFree = recoverMPrintf(p,
13911 zSql = recoverMPrintf(p, "INSERT OR IGNORE INTO %Q(", pTab->zTab);
13915 zSql = recoverMPrintf(p, "%z_rowid_", zSql);
13917 zBind = recoverMPrintf(p, "%zquote(?%d)", zBind, pTab->iRowidBind);
13919 zBind = recoverMPrintf(p, "%z?%d", zBind, pTab->iRowidBind);
13931 zSql = recoverMPrintf(p, "%z%s%Q", zSql, zSep, pTab->aCol[ii].zCol);
13934 zBind = recoverMPrintf(p,
13939 zBind = recoverMPrintf(p, "%z%s?%d", zBind, zSep, pTab->aCol[ii].iBind);
13946 zFinal = recoverMPrintf(p, "SELECT %Q || ') VALUES (' || %s || ')'",
13950 zFinal = recoverMPrintf(p, "%s) VALUES (%s)", zSql, zBind);
13996 zTbl = recoverMPrintf(p, "%s", p->zLostAndFound);
13998 zTbl = recoverMPrintf(p, "%s_%d", p->zLostAndFound, ii);
14024 zField = recoverMPrintf(p, "%z%sc%d", zField, zSep, ii);
14028 zSql = recoverMPrintf(p, "CREATE TABLE %s(%s)", zTbl, zField);
14060 zBind = recoverMPrintf(p, "%z%s?", zBind, zBind?", ":"", ii);
14068 zBind = recoverMPrintf(p, "%z%squote(?)", zBind, zSep);
15384 p->zStateDb = recoverMPrintf(p, "%s", (char*)pArg);
15391 p->zLostAndFound = recoverMPrintf(p, "%s", zArg);