Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

new mysqli(): how to intercept an 'unable to connect' error?

Tags:

php

mysqli

I'm doing this (yes, I'm using wrong connection data, it's to force a connection error )

try {
    $connection = new mysqli('localhost', 'my_user', 'my_password', 'my_db') ;
} catch (Exception $e ) {
    echo "Service unavailable";
    exit (3);
}

But PHP is doing this php_warning:

mysqli::mysqli(): (28000/1045): Access denied for user 'my_user'@'localhost' (using password: YES)

In the example I'm using wrong connection data to force a connection error, but in the real world the database could be down, or the network could be down... etc..

Question: Is there a way, without suppressing warnings, to intercept a problem with the database connection ?

like image 358
realtebo Avatar asked Mar 21 '13 16:03

realtebo


3 Answers

You need to tell mysqli to throw exceptions:

mysqli_report(MYSQLI_REPORT_STRICT);

try {
     $connection = new mysqli('localhost', 'my_user', 'my_password', 'my_db') ;
} catch (Exception $e ) {
     echo "Service unavailable";
     echo "message: " . $e->message;   // not in live code obviously...
     exit;
}

Now you will catch the exception and you can take it from there.

like image 180
jeroen Avatar answered Oct 23 '22 09:10

jeroen


For PHP 5.2.9+

if ($mysqli->connect_error) {
    die('Connect Error, '. $mysqli->connect_errno . ': ' . $mysqli->connect_error);
}

You'll want to set the Report Mode to a strict level as well, just as jeroen suggests, but the code above is still useful for specifically detecting a connection error. The combination of those two approaches is what's recommended in the PHP manual.

like image 37
TonyArra Avatar answered Oct 23 '22 08:10

TonyArra


Check $connection->connect_error value.

See the example here: http://www.php.net/manual/en/mysqli.construct.php

like image 2
ulentini Avatar answered Oct 23 '22 08:10

ulentini