Data.DB.TUpdateRecordTypes
Delphi
type TUpdateRecordTypes = set of (rtModified, rtInserted, rtDeleted, rtUnmodified);
C++
typedef System::Set<Data_Db__3, Data_Db__3::rtModified, Data_Db__3::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. |