IBX.IBServices.TShutdownMode

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TShutdownMode = (Forced, DenyTransaction, DenyAttachment);

C++

enum DECLSPEC_DENUM TShutdownMode : unsigned char { Forced, DenyTransaction, DenyAttachment };

Properties

Type Visibility Source Unit Parent
enum public
IBX.IBServices.pas
IBX.IBServices.hpp
IBX.IBServices IBX.IBServices

Description

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

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.