RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
DB.TUpdateStatus Enumeration

TUpdateStatus indicates the update status of a record.

Pascal
TUpdateStatus = (
  usUnmodified,
  usModified,
  usInserted,
  usDeleted
);
C++
enum TUpdateStatus {
  usUnmodified,
  usModified,
  usInserted,
  usDeleted
};

TUpdateStatus is the return type of the UpdateStatus method. UpdateStatus indicates what change, if any, is cached for the current record. TUpdateStatus includes the following values:

Value 
Description 
usUnmodified  
The current record has no unapplied updates.  
usModified  
The current record has unapplied modifications.  
usInserted  
The current record has been inserted but the insertion was not applied.  
usDeleted  
The current record represents a deleted record, where the deletion has not yet been applied.  

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!