FireDAC.Comp.Script.TFDScriptOptions.CommandSeparator

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property CommandSeparator: String read FCommandSeparator write SetCommandSeparator;

C++

__property System::UnicodeString CommandSeparator = {read=FCommandSeparator, write=SetCommandSeparator};

Properties

Type Visibility Source Unit Parent
property published
FireDAC.Comp.Script.pas
FireDAC.Comp.Script.hpp
FireDAC.Comp.Script TFDScriptOptions

Description

Specifies the SQL command separator.

Use the CommandSeparator property to specify the SQL command separator. The default value is an empty string, which means that the actual separator is chosen depending on a DBMS. For example, ';' for Oracle and 'go' for SQL Server. If a DBMS is not known to FireDAC, then ';' is used as the actual command separator value. 

The property can be set from a script using the SET (CMDSep | TERMinator) <value> command.

See Also