Bde.DBTables.TBatchMove.RecordCount

From RAD Studio API Documentation
Jump to: navigation, search

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

Delphi

property RecordCount: Longint read FRecordCount write FRecordCount default 0;

C++

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

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