RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TCustomClientDataSet.BeforeGetParams Event

Occurs before the client dataset fetches parameter values from the provider.

Pascal
property BeforeGetParams: TRemoteEvent;
C++
__property TRemoteEvent BeforeGetParams;

Write a BeforeGetParams event handler to send custom information to the client dataset's provider. BeforeGetparams is part of the mechanism by which a client dataset and a provider communicate information when passing parameter values from the provider's dataset. 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 application calls the client dataset's FetchParams method, the following events occur: 

1.The client dataset receives a BeforeGetParams 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 BeforeGetParams event, where it can respond to or change that information before it retrieves parameter values.  

3.The provider encodes all of its dataset's current parameter values into an OleVariant. 

4.The provider receives an AfterGetParams event, where it can encode custom information into its OwnerData parameter or respond to information from the BeforeGetParams event handler. 

5.The client dataset unpacks the parameters from the provider into the Params property and then receives an AfterGetParams event, where it can respond to the custom information returned by the provider's AfterGetParams event handler. 

 

FetchParams 

AS_GetParams 

GetParams 

BeforeGetParams 

AfterGetParams 

Communicating with the Client Dataset

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!