[cgiapp] CGI::Application wiki page Examples updated by NicSandfield

2012-01-06 Thread cgiapp
CGI::Application page http://cgi-app.org/index.cgi?Examples edited by NicSandfield # CGI::Application community mailing list #### ## To unsubscribe, or change your message delivery options, ## ## visit:

[cgiapp] catching exceptions

2012-01-06 Thread Cliff Green
I have an application using CGI::Application, DBIx::Class, and CGI::Application::Plugin::DBIC::Schema and if all's well, it hums along nicely (okay, it could do some things better). But, if one there's a problem connecting to one of the databases (e.g., network problems, or if the db is down),

Re: [cgiapp] catching exceptions

2012-01-06 Thread Rhesa Rozendaal
On 01/06/2012 09:45 PM, Cliff Green wrote: I have an application using CGI::Application, DBIx::Class, and CGI::Application::Plugin::DBIC::Schema and if all's well, it hums along nicely (okay, it could do some things better). But, if one there's a problem connecting to one of the databases

Re: [cgiapp] catching exceptions

2012-01-06 Thread Cliff Green
On 1/6/2012 3:52 PM, Rhesa Rozendaal wrote: On 01/06/2012 09:45 PM, Cliff Green wrote: I have an application using CGI::Application, DBIx::Class, and CGI::Application::Plugin::DBIC::Schema and if all's well, it hums along nicely (okay, it could do some things better). But, if one there's a

Re: [cgiapp] catching exceptions

2012-01-06 Thread Joshua Miller
On Fri, Jan 6, 2012 at 4:02 PM, Cliff Green gr...@umdnj.edu wrote: ... it looks like DBIx::Class is dying and not giving me the chance to trap the exception. ... It may have an option to not die on error (DBI has one), and you could then test for and manually catch exceptions. However, the

Re: [cgiapp] catching exceptions

2012-01-06 Thread Ron Savage
Hi Cliff On 07/01/12 07:45, Cliff Green wrote: I have an application using CGI::Application, DBIx::Class, and CGI::Application::Plugin::DBIC::Schema and if all's well, it hums along nicely (okay, it could do some things better). But, if one there's a problem connecting to one of the