Lines Matching refs:zWhere
79649 ** The zWhere string must have been obtained from sqlite3_malloc().
79652 SQLITE_PRIVATE void sqlite3VdbeAddParseSchemaOp(Vdbe *p, int iDb, char *zWhere, u16 p5){
79654 sqlite3VdbeAddOp4(p, OP_ParseSchema, iDb, 0, 0, zWhere, P4_DYNAMIC);
110388 ** Argument zWhere may be a pointer to a buffer containing a table name,
110391 ** If zWhere==0, then code is generated to delete all stat table entries.
110397 const char *zWhere, /* Delete entries for this table or index */
110449 /* The table already exists. If zWhere is not NULL, delete all entries
110450 ** associated with the table zWhere. If zWhere is NULL, delete the
110454 if( zWhere ){
110457 pDb->zDbSName, zTab, zWhereType, zWhere
144939 char *zWhere;
144975 zWhere = sqlite3MPrintf(db, "name=%Q AND sql=%Q", pTab->zName, zStmt);
144976 sqlite3VdbeAddParseSchemaOp(v, iDb, zWhere, 0);
203476 char *zWhere = 0; /* String to return via *pzWhere */
203533 zWhere = sqlite3_mprintf(
203534 "%z%s\"rbu_imp_%d%w\" IS ?", zWhere, zAnd, nBind, zCol
203536 if( zRet==0 || zImpPK==0 || zImpCols==0 || zWhere==0 ) rc = SQLITE_NOMEM;
203549 sqlite3_free(zWhere);
203553 zWhere = 0;
203559 *pzWhere = zWhere;
204120 char *zWhere = 0; /* WHERE clause on PK columns */
204128 p, pIter, &zImposterCols, &zImposterPK, &zWhere, &nBind
204154 sqlite3_mprintf("DELETE FROM \"rbu_imp_%w\" WHERE %s", zTbl, zWhere)
204211 sqlite3_free(zWhere);
204222 char *zWhere = rbuObjIterGetWhere(p, pIter);
204250 "DELETE FROM \"%s%w\" WHERE %s", zWrite, zTbl, zWhere
204344 sqlite3_free(zWhere);
204405 char *zWhere = rbuObjIterGetWhere(p, pIter);
204419 zPrefix, pIter->zTbl, zSet, zWhere
204426 sqlite3_free(zWhere);