in reply to Re: use Fatal;
in thread use Fatal;

Actually, DBI is where I was thinking of bringing it in, combined with a custom $SIG{__DIE__}, eg:
local $SIG{__die__} = sub { die ("DBI Error: $DBI::errstr") if $DBI::errstr; die $!; };
But make sure you explicitly refer to the error (ie, don't use OO method unless method will definitely be in scope in the sub).

Could be very useful...

cLive ;-)

Replies are listed 'Best First'.
Re: (cLive ;-) Re: use Fatal;
by perrin (Chancellor) on Jan 10, 2002 at 08:30 UTC
    No need to use fatal with DBI. Just set DBI's RaiseError flag to true. You can even use eval() to catch exceptions with it.