Bde.DBTables.TDBDataSet.PSGetAttributes

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure PSGetAttributes(List: TList); override;

C++

virtual void __fastcall PSGetAttributes(System::Classes::TList* List);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Bde.DBTables.pas
Bde.DBTables.hpp
Bde.DBTables TDBDataSet

Description

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

Bde.DBTables.TDBDataSet.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