IBX.IBScript.TIBSQLParser.Script

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Script: TStrings read FScript write SetScript;

C++

__property System::Classes::TStrings* Script = {read=FScript, write=SetScript};

Properties

Type Visibility Source Unit Parent
property published
IBX.IBScript.pas
IBX.IBScript.hpp
IBX.IBScript TIBSQLParser

Description

Use the Script property to assign the script you want to parse using the TIBSQLParser component.

Call the Parse method to start parsing the content of the Script property.

You can manage the result after parsing each statement with the OnParse event handler and the OnError event handler.

See Also