RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
DB.TUpdateKind Enumeration

TUpdateKind defines the values for the UpdateKind parameter of OnUpdateError and OnUpdateRecord event handlers.

Pascal
TUpdateKind = (
  ukModify,
  ukInsert,
  ukDelete
);
C++
enum TUpdateKind {
  ukModify,
  ukInsert,
  ukDelete
};

DB

The TUpdateKind type defines the possible values for the UpdateKind parameter of OnUpdateError and OnUpdateRecord event handlers, as described in the following table:

Value 
Description 
ukModify  
The update to the record is a modification to the record's contents.  
ukInsert  
The update is the insertion of a new record.  
ukDelete  
The update is the deletion of a record.  

 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!