FireDAC.Comp.Client.TFDCustomCommand.SQLText

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: public
Source:
FireDAC.Comp.Client.pas
FireDAC.Comp.Client.hpp
Unit: FireDAC.Comp.Client
Parent: TFDCustomCommand

Delphi

property SQLText: String read GetSQLText;

C++

__property System::UnicodeString SQLText = {read=GetSQLText};

Description

The SQL command's text as it is sent to the DBMS.

The SQLText property returns the SQL command's text as it is sent to the DBMS. It is accessible only after the command is prepared.

This text does not have any of command's preprocessed instructions (macros, escapes, etc). It has adjusted parameter markers and end-of-line markers.

See Also