Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^2: mysql_auto_reconnect

by BMaximus (Chaplain)
on Jan 27, 2006 at 16:13 UTC ( [id://526009]=note: print w/replies, xml ) Need Help??


in reply to Re: mysql_auto_reconnect
in thread mysql_auto_reconnect

This is not for checking to see if a connection is still active. In fact you won't get anything from this if you use the connection handler. What idle used is to see if the statement handler is still active after execute() is called on it. If you want to check if the connection to the database is still active then you use the $dbh->ping() method.

if ($dbh->ping()) { $sth = $dbh->prepare('SELECT ...'); $sth->execute(); ... } else { $dbh = DBI::connect(...); }


BMaximus

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (6)
As of 2024-04-24 11:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found