Data.DB.TDataSet.PSGetDefaultOrder

From RAD Studio API Documentation
Jump to: navigation, search

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

Delphi

function PSGetDefaultOrder: TIndexDef; virtual;

C++

virtual TIndexDef* __fastcall PSGetDefaultOrder();

Description

Returns the definition of an index that imposes the default order on the data included in data packets.

The provider component calls PSGetDefaultOrder to generate a default index, called DEFAULT_ORDER, for the records that appear in data packets. This index defines the default sort order for records when they appear in the client dataset on the client.

PSGetDefaultOrder creates a TIndexDef object to describe the default index. The provider that calls PSGetDefaultOrder subsequently frees this TIndexDef object.

This method is an implementation of the IProviderSupport.PSGetDefaultOrder method and, by default, returns nil for Delphi and NULL for C++, because TDataSet does not implement a provider by default. To use it, every TDataSet descendant must override it in its specific way.

See Also