Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

(cLive ;-) Re: use Fatal;

by cLive ;-) (Prior)
on Jan 10, 2002 at 05:20 UTC ( [id://137645]=note: print w/replies, xml ) Need Help??


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.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://137645]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (4)
As of 2024-04-23 16:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found