Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Catching DBI (or other) errors

by virtualsue (Vicar)
on Mar 08, 2006 at 11:24 UTC ( [id://535144]=note: print w/replies, xml ) Need Help??


in reply to Catching DBI (or other) errors

I suggest that you either replace the curly braces with parentheses, or use 'or' rather than '||':
$query->execute() || ($SQL_FAIL =1); $query->execute() or $SQL_FAIL =1;
'or' has a lower precedence than '=', but '||' has a higher precedence, which is what makes parentheses necessary in your original statement.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (6)
As of 2024-04-18 02:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found