Lines Matching refs:zBind
20016 char *zBind = 0; in recoverInsertStmt() local
20030 zBind = recoverMPrintf(p, "%zquote(?%d)", zBind, pTab->iRowidBind); in recoverInsertStmt()
20032 zBind = recoverMPrintf(p, "%z?%d", zBind, pTab->iRowidBind); in recoverInsertStmt()
20047 zBind = recoverMPrintf(p, in recoverInsertStmt()
20048 "%z%sescape_crlf(quote(?%d))", zBind, zSqlSep, pTab->aCol[ii].iBind in recoverInsertStmt()
20052 zBind = recoverMPrintf(p, "%z%s?%d", zBind, zSep, pTab->aCol[ii].iBind); in recoverInsertStmt()
20060 zSql, zBind in recoverInsertStmt()
20063 zFinal = recoverMPrintf(p, "%s) VALUES (%s)", zSql, zBind); in recoverInsertStmt()
20068 sqlite3_free(zBind); in recoverInsertStmt()
20168 char *zBind = 0; in recoverLostAndFoundInsert() local
20173 zBind = recoverMPrintf(p, "%z%s?", zBind, zBind?", ":"", ii); in recoverLostAndFoundInsert()
20176 p, p->dbOut, "INSERT INTO %s VALUES(%s)", zTab, zBind in recoverLostAndFoundInsert()
20181 zBind = recoverMPrintf(p, "%z%squote(?)", zBind, zSep); in recoverLostAndFoundInsert()
20185 p, p->dbOut, "SELECT 'INSERT INTO %s VALUES(' || %s || ')'", zTab, zBind in recoverLostAndFoundInsert()
20189 sqlite3_free(zBind); in recoverLostAndFoundInsert()