IDALegacyWhereSupport

Overview

This interface allows to set legacy Where clause to dataset:

usage on server-side:

//  lDataset: IDAServereDataset; // or IDADataset
//  lWhereSup: IDALegacyWhereSupport;
if Supports(lDataSet,IDALegacyWhereSupport, lWhereSup) then
  lWhereSup.WhereClause := 'CustomerID = 25';

Location


Properties


WhereClause

Where clause as plain string:

  (table.Field = 25) or (table.Field2 = "test")
property WhereClause: string read write