Lines Matching refs:zWhere

78006 ** The zWhere string must have been obtained from sqlite3_malloc().
78009 SQLITE_PRIVATE void sqlite3VdbeAddParseSchemaOp(Vdbe *p, int iDb, char *zWhere){
78011 sqlite3VdbeAddOp4(p, OP_ParseSchema, iDb, 0, 0, zWhere, P4_DYNAMIC);
107391 ** Argument zWhere may be a pointer to a buffer containing a table name,
107394 ** If zWhere==0, then code is generated to delete all stat table entries.
107400 const char *zWhere, /* Delete entries for this table or index */
107452 /* The table already exists. If zWhere is not NULL, delete all entries
107453 ** associated with the table zWhere. If zWhere is NULL, delete the
107457 if( zWhere ){
107460 pDb->zDbSName, zTab, zWhereType, zWhere
139244 char *zWhere;
139280 zWhere = sqlite3MPrintf(db, "name=%Q AND sql=%Q", pTab->zName, zStmt);
139281 sqlite3VdbeAddParseSchemaOp(v, iDb, zWhere);
196643 char *zWhere = 0; /* String to return via *pzWhere */
196700 zWhere = sqlite3_mprintf(
196701 "%z%s\"rbu_imp_%d%w\" IS ?", zWhere, zAnd, nBind, zCol
196703 if( zRet==0 || zImpPK==0 || zImpCols==0 || zWhere==0 ) rc = SQLITE_NOMEM;
196716 sqlite3_free(zWhere);
196720 zWhere = 0;
196726 *pzWhere = zWhere;
197287 char *zWhere = 0; /* WHERE clause on PK columns */
197295 p, pIter, &zImposterCols, &zImposterPK, &zWhere, &nBind
197321 sqlite3_mprintf("DELETE FROM \"rbu_imp_%w\" WHERE %s", zTbl, zWhere)
197378 sqlite3_free(zWhere);
197389 char *zWhere = rbuObjIterGetWhere(p, pIter);
197417 "DELETE FROM \"%s%w\" WHERE %s", zWrite, zTbl, zWhere
197511 sqlite3_free(zWhere);
197572 char *zWhere = rbuObjIterGetWhere(p, pIter);
197586 zPrefix, pIter->zTbl, zSet, zWhere
197593 sqlite3_free(zWhere);