Bde.DBTables.TBatchMove.ChangedCount

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ChangedCount: Longint read FChangedCount;

C++

__property int ChangedCount = {read=FChangedCount, nodefault};

Properties

Type Visibility Source Unit Parent
property public
Bde.DBTables.pas
Bde.DBTables.hpp
Bde.DBTables TBatchMove

Description

Indicates the number of records from the Destination table that are altered as a result of the batch operation.

Use ChangedCount to learn the number of records in the Destination table that are updated if the Mode is batUpdate or batAppendUpdate, or to learn the number that are deleted if the Mode is batDelete.

Set the ChangedTableName property to save the unchanged versions of the altered records to a separate table. ChangedCount is then the number of records in that separate table.

See Also