FireDAC.Comp.Script.TFDScriptOptions.FeedbackCommands
| [–] Properties | |
|---|---|
| Type: property | |
| Visibility: published | |
| Source: FireDAC.Comp.Script.pas FireDAC.Comp.Script.hpp
| |
| Unit: FireDAC.Comp.Script | |
| Parent: TFDScriptOptions | |
Delphi
property FeedbackCommands: Boolean read FFeedbackCommands write FFeedbackCommands default True;
C++
__property bool FeedbackCommands = {read=FFeedbackCommands, write=FFeedbackCommands, default=1};
Description
Controls the feedback output after each SQL command execution.
Set FeedbackCommands to True, to enable the feedback output after each SQL command execution. The feedback can include:
- The number of rows fetched for the commands returning a result set.
- The number of rows updated by the INSERT / UPDATE / DELETE SQL commands.
- The command execution time when Timing is True.
- DB properties after connecting to a DB using CONNECT command.
- The number of rows processed by the COPY command.
The default value is True.
The property can be set from a script using the SET (FEEDback | COUNT) (OFF | ON) command.