Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to view query error in PDO PHP

Tags:

php

mysql

pdo

try {     $db = new PDO("mysql:host=".HOST.";dbname=".DB, USER, PW);     $st = $db->prepare("SELECT * FROM c6ode"); } catch (PDOException $e){     echo $e->getMessage(); } 

How can I check the mysql error for the query in above case?

like image 620
TPSstar Avatar asked Jan 08 '12 08:01

TPSstar


People also ask

What is the purpose of PDO :: errorInfo () data?

PDO::errorInfo only retrieves error information for operations performed directly on the database. Use PDOStatement::errorInfo when a PDOStatement instance is created using PDO::prepare or PDO::query. Support for PDO was added in version 2.0 of the Microsoft Drivers for PHP for SQL Server.

What is a PDO error?

PDO::errorInfo() returns an array of error information about the last operation performed by this database handle. The array consists of at least the following fields: Element. Information.

What is PDO exception in PHP?

PHP Data Objects (or PDO ) are a collection of APIs and interfaces that attempt to streamline and consolidate the various ways databases can be accessed and manipulated into a singular package. Thus, the PDOException is thrown anytime something goes wrong while using the PDO class, or related extensions.


2 Answers

You need to set the error mode attribute PDO::ATTR_ERRMODE to PDO::ERRMODE_EXCEPTION.
And since you expect the exception to be thrown by the prepare() method you should disable the PDO::ATTR_EMULATE_PREPARES* feature. Otherwise the MySQL server doesn't "see" the statement until it's executed.

<?php try {     $pdo = new PDO('mysql:host=localhost;dbname=test;charset=utf8', 'localonly', 'localonly');     $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);     $pdo->setAttribute(PDO::ATTR_EMULATE_PREPARES, false);       $pdo->prepare('INSERT INTO DoesNotExist (x) VALUES (?)'); } catch(Exception $e) {     echo 'Exception -> ';     var_dump($e->getMessage()); } 

prints (in my case)

Exception -> string(91) "SQLSTATE[42S02]: Base table or view not found:  1146 Table 'test.doesnotexist' doesn't exist" 

see http://wezfurlong.org/blog/2006/apr/using-pdo-mysql/
EMULATE_PREPARES=true seems to be the default setting for the pdo_mysql driver right now. The query cache thing has been fixed/change since then and with the mysqlnd driver I hadn't problems with EMULATE_PREPARES=false (though I'm only a php hobbyist, don't take my word on it...)

*) and then there's PDO::MYSQL_ATTR_DIRECT_QUERY - I must admit that I don't understand the interaction of those two attributes (yet?), so I set them both, like

$pdo = new PDO('mysql:host=localhost;dbname=test;charset=utf8', 'localonly', 'localonly', array(     PDO::ATTR_EMULATE_PREPARES=>false,     PDO::MYSQL_ATTR_DIRECT_QUERY=>false,     PDO::ATTR_ERRMODE=>PDO::ERRMODE_EXCEPTION )); 
like image 176
VolkerK Avatar answered Oct 06 '22 17:10

VolkerK


I'm using this without any additional settings:

if (!$st->execute()) {     print_r($st->errorInfo()); } 
like image 37
ladar Avatar answered Oct 06 '22 17:10

ladar