Lines Matching refs:zBind
17766 char *zBind = 0; in recoverInsertStmt() local
17780 zBind = recoverMPrintf(p, "%zquote(?%d)", zBind, pTab->iRowidBind); in recoverInsertStmt()
17782 zBind = recoverMPrintf(p, "%z?%d", zBind, pTab->iRowidBind); in recoverInsertStmt()
17797 zBind = recoverMPrintf(p, in recoverInsertStmt()
17798 "%z%sescape_crnl(quote(?%d))", zBind, zSqlSep, pTab->aCol[ii].iBind in recoverInsertStmt()
17802 zBind = recoverMPrintf(p, "%z%s?%d", zBind, zSep, pTab->aCol[ii].iBind); in recoverInsertStmt()
17810 zSql, zBind in recoverInsertStmt()
17813 zFinal = recoverMPrintf(p, "%s) VALUES (%s)", zSql, zBind); in recoverInsertStmt()
17818 sqlite3_free(zBind); in recoverInsertStmt()
17918 char *zBind = 0; in recoverLostAndFoundInsert() local
17923 zBind = recoverMPrintf(p, "%z%s?", zBind, zBind?", ":"", ii); in recoverLostAndFoundInsert()
17926 p, p->dbOut, "INSERT INTO %s VALUES(%s)", zTab, zBind in recoverLostAndFoundInsert()
17931 zBind = recoverMPrintf(p, "%z%squote(?)", zBind, zSep); in recoverLostAndFoundInsert()
17935 p, p->dbOut, "SELECT 'INSERT INTO %s VALUES(' || %s || ')'", zTab, zBind in recoverLostAndFoundInsert()
17939 sqlite3_free(zBind); in recoverLostAndFoundInsert()