FireDAC.Comp.Script.TFDScriptOptions.RaisePLSQLErrors

From RAD Studio API Documentation
Jump to: navigation, search

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

Delphi

property RaisePLSQLErrors: Boolean read FRaisePLSQLErrors write FRaisePLSQLErrors default False;

C++

__property bool RaisePLSQLErrors = {read=FRaisePLSQLErrors, write=FRaisePLSQLErrors, default=0};

Description

Controls the raising of exceptions after the PL/SQL compilation errors.

Set RaisePLSQLErrors to True to raise an exception after the PL/SQL compilation errors. This allows you to stop the script execution, if some PL/SQL related commands, like CREATE PROCEDURE or LATER PACKAGE finished with errors. 

The default value is False.

See Also