in reply to Re: Re: Re: Re: Re: accessing Apache::DBI 'cached connections'
in thread accessing Apache::DBI 'cached connections'

yes, agreed. i thought i was getting info from the startup.pl .. but that doesn't seem to be the case. maybe subject for different node ... but i've preloaded CGI::Carp ...
# Tell me more about warnings use CGI::Carp qw( fatalsToBrowser warningsToBrowser ); $SIG{__WARN__} = \&Carp::cluck;
but i'm not getting the fatalsToBrowser behaviour i'm supposed to ... normal 500 error messages, not Carp output
  • Comment on Re: Re: Re: Re: Re: Re: accessing Apache::DBI 'cached connections'
  • Download Code

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: Re: Re: accessing Apache::DBI 'cached connections'
by perrin (Chancellor) on Jul 21, 2003 at 22:31 UTC
    If you mean that you aren't getting the same connection that you tried to set up in startup.pl, that's because you aren't sending in the same connection parameters. They have to be identical.

    CGI::Carp is kind of a hack and people often have trouble with it.