Data.DB.TUpdateRecordTypes
Delphi
TUpdateRecordTypes = set of TUpdateRecordType;
C++
typedef System::Set<TUpdateRecordType, TUpdateRecordType::rtModified, TUpdateRecordType::rtUnmodified> TUpdateRecordTypes;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
set typedef |
public | Data.DB.pas Data.DB.hpp |
Data.DB | Data.DB |
Description
TUpdateRecordTypes is a set that specifies the update status that is applied to a record.
TUpdateRecordTypes is a set that is used to indicate the update status that is applied to a record. The possible values for TUpdateRecordTypes are listed in the following table:
Value | Description |
---|---|
rtModified |
The current record has unapplied modifications. |
rtInserted |
The current record has been inserted but the insertion was not applied. |
rtDeleted |
The current record represents a deleted record, where the deletion has not yet been applied. |
usDeleted |
The current record has no unapplied updates. |