Bde.DBTables.TBatchMove.RecordCount

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property RecordCount: Longint read FRecordCount write FRecordCount default 0;

C++

__property System::LongInt RecordCount = {read=FRecordCount, write=FRecordCount, default=0};

Properties

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

Description

Specifies the maximum number of records that are applied to the Destination when Execute is called.

Use RecordCount to limit the number of Source records that are applied to the Destination. If zero, all records are added, subtracted, or copied, beginning with the first record in Source. If RecordCount is greater than zero, up to RecordCount records are applied to the Destination, starting with the current record in the dataset. If RecordCount exceeds the number of records remaining in Source, no wraparound occurs; the operation is terminated.

See Also