Page 1 of 1

ShutdownDatabase Options

Posted: Thu 12 Jul 2012 11:54
by mils
Hello,

what options are allowed in TIBCConfigService::ShutdownDatabase method ? Is there possibility to shutdown Firebird database in full, single or multi mode? I can't find any description in manual.

Regards

Re: ShutdownDatabase Options

Posted: Fri 13 Jul 2012 07:43
by ZEuS
The TIBCConfigService.ShutdownDatabase method accepts such options:
- smForced, that forces a database shutdown without waiting;
- smDenyTransaction, that denies new transactions, then waits for a period of time and then shutdowns;
- smDenyAttachment, that denies new attachments, then waits for a period of time and then shutdowns.
For the time being IBDAC doesn't provide functionality to shutdown Firebird database in the full, single or multi mode using the TIBCConfigService component. We will add this functionality in one of the next IBDAC builds.

Re: ShutdownDatabase Options

Posted: Fri 13 Jul 2012 09:02
by mils
Thx.