Datasnap.Provider.TCustomProvider.DoBeforeGetParams

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoBeforeGetParams(var OwnerData: OleVariant); virtual;

C++

virtual void __fastcall DoBeforeGetParams(System::OleVariant &OwnerData);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Datasnap.Provider.pas
Datasnap.Provider.hpp
Datasnap.Provider TCustomProvider

Description

Generates a BeforeGetParams event.

The GetParams method calls DoBeforeGetParams to generate the BeforeGetParams event before fetching the current parameter values of the associated dataset.

OwnerData supplies custom information to the BeforeGetParams event handler. The event handler can change this value. The returned value is then passed to an AfterGetParams event handler and then returned to the caller of the GetParams method.

See Also