Why the PDO exception error didn’t get there?

I have a PHP script with two intentional typo errors in a statement for an SQL query:

try { $stmt = $dbh->prepare("SELECT COUNT(*) FROM Product WHERE non-existent_column=?"); $stmt->blindValue(1, $id, PDO::PARAM_INT); $stmt->execute(); $row = $stmt->fetchColumn(); } catch(PDOException $err) { var_dump($err->getMessage()); var_dump($dbh->errorInfo()); } 

However, the script does not catch the error even after setting the PDO::ERRMODE_EXCEPTION . What am I missing here?

UPDATE:

This is a complete script. The second typo of blindValue back. The error remains undetected:

 <?php $user= "user"; $password = "password"; $dsn = "mysql:dbname=Catalogue;host=localhost"; $dbh = new PDO($dsn, $user, $password); $dbh->setAttribute(PDO::ERRMODE_EXCEPTION); $id = 1000; try { $stmt = $dbh->prepare("SELECT COUNT(*) FROM Product WHERE non-existent_column=?"); $stmt->bindValue(1, $id, PDO::PARAM_INT); $stmt->execute(); $row = $stmt->fetchColumn(); } catch(PDOException $err) { echo "caught"; var_dump($err->getMessage()); var_dump($dbh->errorInfo()); exit(); } var_dump($stmt); var_dump($row); echo "uncaught"; exit(); ?> 
+6
source share
3 answers

Your setAttribute () call is missing the first parameter:

 $dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); 

If you have not received

 Warning: PDO::setAttribute() expects exactly 2 parameters, 1 given 

your error_reporting level is too low for the development server and / or you don't follow the error log or set display_errors = On (which I ever preferred; I prefer the error log to display_errors).


edit: try

 <?php echo 'php version: ', phpversion(), "\n"; try { $dbh = new PDO('mysql:host=localhost;dbname=test;charset=utf8', 'localonly', 'localonly'); echo 'client version: ', $dbh->getAttribute(PDO::ATTR_CLIENT_VERSION), "\n"; echo 'server version: ', $dbh->getAttribute(PDO::ATTR_SERVER_VERSION), "\n"; $dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); $dbh->setAttribute(PDO::ATTR_EMULATE_PREPARES, false); } catch(PDOException $err) { var_dump($err->getMessage()); die('...'); } $id = 'foo'; try { $stmt = $dbh->prepare("SELECT COUNT(*) FROM Product WHERE `non-existent_column`=?"); $stmt->bindValue(1, $id, PDO::PARAM_INT); $stmt->execute(); $row = $stmt->fetchColumn(); } catch(PDOException $err) { var_dump($err->getMessage()); var_dump($dbh->errorInfo()); die('....'); } echo 'done.'; 

printed on my car

 php version: 5.3.5 client version: mysqlnd 5.0.7-dev - 091210 - $Revision: 304625 $ server version: 5.5.8 string(94) "SQLSTATE[42S22]: Column not found: 1054 Unknown column 'non-existent_column' in 'where clause'" array(3) { [0]=> string(5) "42S22" [1]=> int(1054) [2]=> string(54) "Unknown column 'non-existent_column' in 'where clause'" } .... 
+11
source
 $stmt->blindValue(1, $id, PDO::PARAM_INT); 

It should be $stmt->bindValue(1, $id, PDO::PARAM_INT);

You cannot detect Fatal Errors, for example, by calling the function / method undefined.

+3
source

I experienced this and realized that this is my PHP configuration file.

xdebug.show_exception_trace = 1

Exceptions will always be displayed if true.

-2
source

Source: https://habr.com/ru/post/901796/


All Articles