RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
IBServices.TShutdownMode Enumeration

TShutdownMode indicates what steps to take when shutting down the InterBase database.

Pascal
TShutdownMode = (
  Forced,
  DenyTransaction,
  DenyAttachment
);
C++
enum TShutdownMode {
  Forced,
  DenyTransaction,
  DenyAttachment
};

TShutdownMode values are:

Forced  
Shut down the database after the specified number of seconds. To shut down the database immediately, set the number of seconds to 0.  
DenyTransaction  
Deny new transactions for the specified number of seconds and then shut down. The shutdown will fail if there are still active transactions to the database.  
DenyAttachment  
Deny new attachments for the specified number of seconds and then shut down. The shutdown will fail if there are still active attachments to the database.  

 

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