Data.DB.TUpdateRecordTypes

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
set
typedef
Visibility: public
Source:
Data.DB.pas
Data.DB.hpp
Unit: Data.DB
Parent: Data.DB

Delphi

TUpdateRecordTypes = set of TUpdateRecordType;

C++

typedef System::Set<TUpdateRecordType, TUpdateRecordType::rtModified, TUpdateRecordType::rtUnmodified> TUpdateRecordTypes;

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.


See Also