Lines Matching refs:zWhere

86454 ** The zWhere string must have been obtained from sqlite3_malloc().
86457 SQLITE_PRIVATE void sqlite3VdbeAddParseSchemaOp(Vdbe *p, int iDb, char *zWhere, u16 p5){
86459 sqlite3VdbeAddOp4(p, OP_ParseSchema, iDb, 0, 0, zWhere, P4_DYNAMIC);
120261 ** Argument zWhere may be a pointer to a buffer containing a table name,
120264 ** If zWhere==0, then code is generated to delete all stat table entries.
120270 const char *zWhere, /* Delete entries for this table or index */
120323 /* The table already exists. If zWhere is not NULL, delete all entries
120324 ** associated with the table zWhere. If zWhere is NULL, delete the
120328 if( zWhere ){
120331 pDb->zDbSName, zTab, zWhereType, zWhere
158018 char *zWhere;
158055 zWhere = sqlite3MPrintf(db, "name=%Q AND sql=%Q", pTab->zName, zStmt);
158056 sqlite3VdbeAddParseSchemaOp(v, iDb, zWhere, 0);
222993 char *zWhere = 0; /* String to return via *pzWhere */
223050 zWhere = sqlite3_mprintf(
223051 "%z%s\"rbu_imp_%d%w\" IS ?", zWhere, zAnd, nBind, zCol
223053 if( zRet==0 || zImpPK==0 || zImpCols==0 || zWhere==0 ) rc = SQLITE_NOMEM;
223066 sqlite3_free(zWhere);
223070 zWhere = 0;
223076 *pzWhere = zWhere;
223637 char *zWhere = 0; /* WHERE clause on PK columns */
223645 p, pIter, &zImposterCols, &zImposterPK, &zWhere, &nBind
223671 sqlite3_mprintf("DELETE FROM \"rbu_imp_%w\" WHERE %s", zTbl, zWhere)
223728 sqlite3_free(zWhere);
223739 char *zWhere = rbuObjIterGetWhere(p, pIter);
223767 "DELETE FROM \"%s%w\" WHERE %s", zWrite, zTbl, zWhere
223861 sqlite3_free(zWhere);
223922 char *zWhere = rbuObjIterGetWhere(p, pIter);
223936 zPrefix, pIter->zTbl, zSet, zWhere
223943 sqlite3_free(zWhere);