Componentes.Terceros.DevExp.../official/x.42/ExpressDBTree Suite/Sources/dxlocate.pas
2009-02-27 12:02:10 +00:00

17 lines
431 B
ObjectPascal

unit dxlocate;
interface
{$I cxVer.inc}
uses DB{$IFDEF DELPHI6}, Variants{$ENDIF};
function DBTrDataSetLocate(DataSet: TDataSet; AFieldName: string; AValue: Variant; AOptions: TLocateOptions): Boolean;
implementation
function DBTrDataSetLocate(DataSet: TDataSet; AFieldName: string; AValue: Variant; AOptions: TLocateOptions): Boolean;
begin
Result := DataSet.Locate(AFieldName, AValue, AOptions);
end;
end.