FireDAC.Comp.Script.TFDScript.BeforeExecute

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: event
Visibility: published
Source:
FireDAC.Comp.Script.pas
FireDAC.Comp.Script.hpp
Unit: FireDAC.Comp.Script
Parent: TFDScript

Delphi

property BeforeExecute: TNotifyEvent read FBeforeExecute write FBeforeExecute;

C++

__property System::Classes::TNotifyEvent BeforeExecute = {read=FBeforeExecute, write=FBeforeExecute};

Description

The event is fired before the execution starts.

Use BeforeExecute to handle the event before the execution starts.

All the ExecuteXxx and ValidateXxx methods call the BeforeExecute event handler at their start.

See Also