Componentes.Terceros.DevExp.../internal/x.36/1/ExpressDBTree Suite/Sources/dxlocate.pas
2008-09-04 11:31:51 +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.