Data.DB.TDataSet.PSGetAttributes

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: protected
Source:
Data.DB.pas
Data.DB.hpp
Unit: Data.DB
Parent: TDataSet

Delphi

procedure PSGetAttributes(List: TPacketAttributeList); virtual;

C++

virtual void __fastcall PSGetAttributes(TPacketAttributeList* List);

Description

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