SimpleDS.TSimpleDataSet.AfterGetRecords

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property AfterGetRecords: TRemoteEvent read FAfterGetRecords write FAfterGetRecords;

C++

__property AfterGetRecords;

Properties

Type Visibility Source Unit Parent
event published
SimpleDS.pas
SimpleDS.hpp
SimpleDS TSimpleDataSet

Description

Occurs after the client dataset fetches a data packet from the provider.

SimpleDS.TSimpleDataSet.AfterGetRecords inherits from Datasnap.DBClient.TCustomClientDataSet.AfterGetRecords. All content below this line refers to Datasnap.DBClient.TCustomClientDataSet.AfterGetRecords.

Occurs after the client dataset fetches a data packet from the provider.

Write an AfterGetRecords event handler to respond to custom information returned to the client dataset from a provider's AfterGetRecords event handler. AfterGetRecords is part of the mechanism by which a client dataset and a provider communicate information about data fetching. When working with a provider on a stateless application server, this mechanism allows the client dataset and the provider to communicate persistent state information.

When the client dataset fetches data from the application server, the following events occur:

  1. The client dataset receives a BeforeGetRecords event, where it can encode custom information into an OleVariant that is passed to the provider as the OwnerData parameter.
  2. The provider receives a BeforeGetRecords event, where it can respond to or change that information before it creates a data packet.
  3. The provider generates an OnGetData event where it can edit the data before creating a data packet, and then generates the data packet.
  4. The provider receives an AfterGetRecords event, where it can encode custom information into its OwnerData parameter or respond to information from the BeforeGetRecords event handler.
  5. The client dataset receives an AfterGetRecords event, where it can respond to the custom information returned by the provider's AfterGetRecords event handler.

AfterGetRecords is an event handler of type Datasnap.DBClient.TRemoteEvent.

See Also