Lines Matching defs:zList
210248 char *zList = 0;
210253 zList = rbuMPrintf(p, "%z%s\"%w\"", zList, zSep, z);
210256 return zList;
210332 char *zList = rbuObjIterGetPkList(p, pIter, "", ", ", "");
210343 zRet = rbuMPrintf(p, " WHERE (%s) > (%s) ", zList, zVal);
210350 sqlite3_free(zList);
210609 char *zList = 0;
210616 zList = sqlite3_mprintf("%z%s%s.\"%w\"", zList, zS, zObj, zCol);
210618 zList = sqlite3_mprintf("%z%sNULL", zList, zS);
210621 if( zList==0 ){
210629 zList = rbuMPrintf(p, "%z, %s._rowid_", zList, zObj);
210632 return zList;
210649 char *zList = 0;
210651 zList = rbuMPrintf(p, "_rowid_ = ?%d", pIter->nTblCol+1);
210657 zList = rbuMPrintf(p, "%z%sc%d=?%d", zList, zSep, i, i+1);
210661 zList = rbuMPrintf(p,
210662 "_rowid_ = (SELECT id FROM rbu_imposter2 WHERE %z)", zList
210671 zList = rbuMPrintf(p, "%z%s\"%w\"=?%d", zList, zSep, zCol, i+1);
210676 return zList;
210714 char *zList = 0;
210725 zList = rbuMPrintf(p, "%z%s\"%w\"=?%d",
210726 zList, zSep, pIter->azTblCol[i], i+1
210731 zList = rbuMPrintf(p, "%z%s\"%w\"=rbu_delta(\"%w\", ?%d)",
210732 zList, zSep, pIter->azTblCol[i], pIter->azTblCol[i], i+1
210737 zList = rbuMPrintf(p, "%z%s\"%w\"=rbu_fossil_delta(\"%w\", ?%d)",
210738 zList, zSep, pIter->azTblCol[i], pIter->azTblCol[i], i+1
210745 return zList;