Bde.DBTables.TBatchMove.ChangedCount

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: public
Source:
Bde.DBTables.pas
Bde.DBTables.hpp
Unit: Bde.DBTables
Parent: TBatchMove

Delphi

property ChangedCount: Longint read FChangedCount;

C++

__property System::LongInt ChangedCount = {read=FChangedCount, nodefault};

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