Data.DB.TDetailDataLink.DetailDataSet

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property DetailDataSet: TDataSet read GetDetailDataSet;

C++

__property TDataSet* DetailDataSet = {read=GetDetailDataSet};

Properties

Type Visibility Source Unit Parent
property public
Data.DB.pas
Data.DB.hpp
Data.DB TDetailDataLink

Description

Indicates the detail dataset in the master/detail relationship.

Read DetailDataSet to access the detail dataset. This is the dataset that uses a DetailDataLink to access its master dataset. The detail dataset is the detail datalink's owner, and uses the datalink to implement its DataSource property.

Note: Do not confuse the DetailDataSet property with the DataSet property. The DataSet property is the dataset whose data events the detail datalink tracks. That is, DataSet is the master dataset while DetailDataSet is the detail set.

See Also