Lines Matching defs:zWhere

83015 ** The zWhere string must have been obtained from sqlite3_malloc().
83018 SQLITE_PRIVATE void sqlite3VdbeAddParseSchemaOp(Vdbe *p, int iDb, char *zWhere, u16 p5){
83020 sqlite3VdbeAddOp4(p, OP_ParseSchema, iDb, 0, 0, zWhere, P4_DYNAMIC);
114767 ** Argument zWhere may be a pointer to a buffer containing a table name,
114770 ** If zWhere==0, then code is generated to delete all stat table entries.
114776 const char *zWhere, /* Delete entries for this table or index */
114828 /* The table already exists. If zWhere is not NULL, delete all entries
114829 ** associated with the table zWhere. If zWhere is NULL, delete the
114833 if( zWhere ){
114836 pDb->zDbSName, zTab, zWhereType, zWhere
150402 char *zWhere;
150438 zWhere = sqlite3MPrintf(db, "name=%Q AND sql=%Q", pTab->zName, zStmt);
150439 sqlite3VdbeAddParseSchemaOp(v, iDb, zWhere, 0);
210505 char *zWhere = 0; /* String to return via *pzWhere */
210562 zWhere = sqlite3_mprintf(
210563 "%z%s\"rbu_imp_%d%w\" IS ?", zWhere, zAnd, nBind, zCol
210565 if( zRet==0 || zImpPK==0 || zImpCols==0 || zWhere==0 ) rc = SQLITE_NOMEM;
210578 sqlite3_free(zWhere);
210582 zWhere = 0;
210588 *pzWhere = zWhere;
211149 char *zWhere = 0; /* WHERE clause on PK columns */
211157 p, pIter, &zImposterCols, &zImposterPK, &zWhere, &nBind
211183 sqlite3_mprintf("DELETE FROM \"rbu_imp_%w\" WHERE %s", zTbl, zWhere)
211240 sqlite3_free(zWhere);
211251 char *zWhere = rbuObjIterGetWhere(p, pIter);
211279 "DELETE FROM \"%s%w\" WHERE %s", zWrite, zTbl, zWhere
211373 sqlite3_free(zWhere);
211434 char *zWhere = rbuObjIterGetWhere(p, pIter);
211448 zPrefix, pIter->zTbl, zSet, zWhere
211455 sqlite3_free(zWhere);