Datasnap.Provider.TCustomProvider.DoAfterExecute

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoAfterExecute(var OwnerData: OleVariant); virtual;

C++

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

Properties

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

Description

Generates an AfterExecute event.

The Execute method calls DoAfterExecute to generate the AfterExecute event after executing CommandText or the associated query or stored procedure but before fetching any output parameters.

OwnerData supplies custom information to the AfterExecute event handler. This is the same as the outgoing OwnerData parameter of the BeforeExecute event handler. The AfterExecute event handler can change this value. The returned value is then passed to the client.

See Also