Lines Matching refs:zWhere
85398 ** The zWhere string must have been obtained from sqlite3_malloc().
85401 SQLITE_PRIVATE void sqlite3VdbeAddParseSchemaOp(Vdbe *p, int iDb, char *zWhere, u16 p5){
85403 sqlite3VdbeAddOp4(p, OP_ParseSchema, iDb, 0, 0, zWhere, P4_DYNAMIC);
118617 ** Argument zWhere may be a pointer to a buffer containing a table name,
118620 ** If zWhere==0, then code is generated to delete all stat table entries.
118626 const char *zWhere, /* Delete entries for this table or index */
118678 /* The table already exists. If zWhere is not NULL, delete all entries
118679 ** associated with the table zWhere. If zWhere is NULL, delete the
118683 if( zWhere ){
118686 pDb->zDbSName, zTab, zWhereType, zWhere
155857 char *zWhere;
155893 zWhere = sqlite3MPrintf(db, "name=%Q AND sql=%Q", pTab->zName, zStmt);
155894 sqlite3VdbeAddParseSchemaOp(v, iDb, zWhere, 0);
219816 char *zWhere = 0; /* String to return via *pzWhere */
219873 zWhere = sqlite3_mprintf(
219874 "%z%s\"rbu_imp_%d%w\" IS ?", zWhere, zAnd, nBind, zCol
219876 if( zRet==0 || zImpPK==0 || zImpCols==0 || zWhere==0 ) rc = SQLITE_NOMEM;
219889 sqlite3_free(zWhere);
219893 zWhere = 0;
219899 *pzWhere = zWhere;
220460 char *zWhere = 0; /* WHERE clause on PK columns */
220468 p, pIter, &zImposterCols, &zImposterPK, &zWhere, &nBind
220494 sqlite3_mprintf("DELETE FROM \"rbu_imp_%w\" WHERE %s", zTbl, zWhere)
220551 sqlite3_free(zWhere);
220562 char *zWhere = rbuObjIterGetWhere(p, pIter);
220590 "DELETE FROM \"%s%w\" WHERE %s", zWrite, zTbl, zWhere
220684 sqlite3_free(zWhere);
220745 char *zWhere = rbuObjIterGetWhere(p, pIter);
220759 zPrefix, pIter->zTbl, zSet, zWhere
220766 sqlite3_free(zWhere);