FireDAC.Comp.Client.TFDAdaptedDataSet.PSGetAttributes

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: protected
Source:
FireDAC.Comp.Client.pas
FireDAC.Comp.Client.hpp
Unit: FireDAC.Comp.Client
Parent: TFDAdaptedDataSet

Delphi

procedure PSGetAttributes(AList: TPacketAttributeList); override;

C++

virtual void __fastcall PSGetAttributes(Data::Db::TPacketAttributeList* AList);

Description

Returns information that is stored in data packets as Name/Value pairs.

FireDAC.Comp.Client.TFDAdaptedDataSet.PSGetAttributes inherits from Data.DB.TDataSet.PSGetAttributes. All content below this line refers to Data.DB.TDataSet.PSGetAttributes.

Returns information that is stored in data packets as Name/Value pairs.

The provider component calls PSGetAttributes to add information about the dataset to the metadata stored with generated data packets. This information is stored as Name/Value pairs that are added to the list specified by the List parameter.

This method is an implementation of the IProviderSupport.PSGetAttributes method and, by default, is blank, because the dataset does not implement a provider by default. To use it, every TDataSet descendant must override it in its specific way.

See Also