FireDAC.Comp.DataSet.TFDDataSet.BeforeGetRecords

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: event
Visibility: public
Source:
FireDAC.Comp.DataSet.pas
FireDAC.Comp.DataSet.hpp
Unit: FireDAC.Comp.DataSet
Parent: TFDDataSet

Delphi

property BeforeGetRecords: TFDDataSetEvent read FBeforeGetRecords write FBeforeGetRecords;

C++

__property TFDDataSetEvent BeforeGetRecords = {read=FBeforeGetRecords, write=FBeforeGetRecords};

Description

Fires before fetching the next rowset.

The BeforeGetRecords event fires before the dataset fetches the next rowset, as a result of calling navigation methods. For example, fetching occurs automatically when invoking the Next, Last, and Locate methods.

See Also