FireDAC.Comp.Script.TFDScript.ProcessedAfterCommit

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ProcessedAfterCommit: Integer read FProcessedAfterCommit write FProcessedAfterCommit;

C++

__property int ProcessedAfterCommit = {read=FProcessedAfterCommit, write=FProcessedAfterCommit, nodefault};

Properties

Type Visibility Source Unit Parent
property public
FireDAC.Comp.Script.pas
FireDAC.Comp.Script.hpp
FireDAC.Comp.Script TFDScript

Description

Returns the number of the SQL commands processed after the last transaction.

Read the ProcessedAfterCommit property to get the number of the SQL commands processed after the last transaction.

If the CommitEachNCommands option is 0 (never commit) or greater than 1 (commit each N SQL commands), then ProcessedAfterCommit can be greater than 0, if SQL commands were executed after the last COMMIT command.

If the CommitEachNCommands is 0, then ProcessedAfterCommit is always 0.

See Also