Bde.DBTables.TBatchMove.ChangedTableName

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ChangedTableName: TFileName read FChangedTableName write FChangedTableName;

C++

__property System::Sysutils::TFileName ChangedTableName = {read=FChangedTableName, write=FChangedTableName};

Properties

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

Description

Specifies the name of a local Paradox table that is created to hold copies of all records from the destination table changed by the batch operation.

Set ChangedTableName to create a table that saves all unchanged versions of records that are changed by the batch operation. ChangedTableName must specify the name of a Paradox table. Setting ChangedTableName ensures that no information in the Destination table gets lost when the records are altered or deleted.

When the Mode property is batUpdate or batAppendUpdate, the new table will hold all records that were updated. When the Mode property is batDelete, the new table will hold all records that were deleted.

The ChangedCount property specifies the number of records in the new table.

See Also