Datasnap.Provider.TCustomProvider.DoAfterApplyUpdates

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoAfterApplyUpdates(var OwnerData: OleVariant); virtual;

C++

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

Properties

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

Description

Generates an AfterApplyUpdates event.

The ApplyUpdates method calls DoAfterApplyUpdates to generate the AfterApplyUpdates event after applying updates and resolving any update errors that are handled by the provider.

OwnerData supplies custom information to the AfterApplyUpdates event handler. This is the same as the outgoing OwnerData parameter of the BeforeApplyUpdates event handler. The AfterApplyUpdates event handler can change this value. The returned value is then passed to the client if it supplied an OwnerData parameter when calling ApplyUpdates.

See Also