FireDAC.Phys.MongoDBDataSet.TFDMongoPipeline.AfterGetRecord

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property AfterGetRecord: TFDDataSetEvent read FAfterGetRecord write FAfterGetRecord;

C++

__property AfterGetRecord;

Properties

Type Visibility Source Unit Parent
event published
FireDAC.Phys.MongoDBDataSet.pas
FireDAC.Phys.MongoDBDataSet.hpp
FireDAC.Phys.MongoDBDataSet TFDMongoPipeline

Description

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

FireDAC.Phys.MongoDBDataSet.TFDMongoPipeline.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