in reply to Re: built-in Catalyst server restarting issue
in thread built-in Catalyst server restarting issue

(it's me, the original author of the thread, just logged in)

Thank you for your reply, but RaiseError changed nothing (well, it shouldn't change anything as I know, only report errors) and it didn't report anything:

Saw changes to the following files: - /path_to_my_project/MyProject/lib/MyProject/Model/DB.pm (modify) Attempting to restart the server

The good part is that the issue is related to the DB connection for sure. I've just installed MySQL and tested using it and it does work correctly. So, it's something Oracle specific and maybe someone with Oracle knowledge could help .. I hope.

Replies are listed 'Best First'.
Re^3: built-in Catalyst server restarting issue
by AbrekUS (Acolyte) on Jul 06, 2012 at 17:31 UTC
    That is because signal handling has changed in the newer version of the Oracle client. Use the "ora_connect_with_default_signals" option to restore default signal handler:
    options => { AutoCommit => 1, ora_connect_with_default_signals => [ 'INT' ], },