FireDAC.Comp.DataSet.TFDDataSet.AfterGetRecord

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 AfterGetRecord: TFDDataSetEvent read FAfterGetRecord write FAfterGetRecord;

C++

__property TFDDataSetEvent AfterGetRecord = {read=FAfterGetRecord, write=FAfterGetRecord};

Description

Fires after fetching the next rowset, once for each fetched record.

The AfterGetRecord event fires after the dataset fetched the next rowset as a result of calling navigation methods. The event fires once for each fetched record. For example, fetching occurs automatically when invoking the Next, Last, and Locate methods. In an event handler, the application can read dataset fields to get record field values fetched.

See Also