FireDAC.Comp.Client.TFDMetaInfoQuery.AfterGetRecord

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: event
Visibility: published
Source:
FireDAC.Comp.Client.pas
FireDAC.Comp.Client.hpp
Unit: FireDAC.Comp.Client
Parent: TFDMetaInfoQuery

Delphi

property AfterGetRecord;

C++

__property AfterGetRecord;

Description

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

FireDAC.Comp.Client.TFDMetaInfoQuery.AfterGetRecord inherits from FireDAC.Comp.DataSet.TFDDataSet.AfterGetRecord. All content below this line refers to FireDAC.Comp.DataSet.TFDDataSet.AfterGetRecord.

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