Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When your query is not correct, php returns an error message like following one:

Uncaught exception 'PDOException' with message 'SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '@aaa.com)' at line 1' in C:\Program Files\...

Is there a way to force it to display full MySQL query string in error message?

Update:

I need a solution that works in entire web site (in development stage).

Perhaps via php.ini of my.ini

I currently use ZF for database interaction.

share|improve this question
maybe you could look here stackoverflow.com/questions/2411182/… – riso Apr 15 '12 at 8:24
die(mysql_error().$sql); – Adam Sack Apr 15 '12 at 8:25
I don't know. But what about mysql_error()? It doesn't return the sql sentence, but it could be helpful. – eZakto Apr 15 '12 at 8:25
Note that such detailed error messages are only meant for the developers and should not be shown in production. – Gumbo Apr 15 '12 at 8:29

1 Answer

$stmt = /* PDOStatement */
if (!$stmt->execute()) {

    echo $stmt->queryString;
}
share|improve this answer
Where queryString comes from? Don't see it on nz.php.net/pdo – zerkms Apr 15 '12 at 9:36
is a member variable of PDOStatement, generated by it's execute method. just use it, it's there ;) – Andreas Linden Apr 15 '12 at 9:38
right, it is described on nz.php.net/manual/en/class.pdostatement.php – zerkms Apr 15 '12 at 9:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.