in reply to Re: Help! cannot solve a "die" ing problem with Class::DBI
in thread Help! cannot solve a "die" ing problem with Class::DBI

Thanks for your response perrin. I will check our Ima, although I know that the Class::DBI versions are the same. Can you expand on why a universal Die handler is not neccessarily a safe idea please?
  • Comment on Re^2: Help! cannot solve a "die" ing problem with Class::DBI

Replies are listed 'Best First'.
Re^3: Help! cannot solve a "die" ing problem with Class::DBI
by perrin (Chancellor) on Sep 16, 2004 at 14:24 UTC
    The problem with a DIE handler is that it catches other people's exceptions when they were trying to use eval{} blocks. See this for more.
      ok thanks. Not sure this is the root cause, as
      use base "Class::DBI::__::Base";
      is not in an eval{} block, and this is where the die is propagating from.