|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-04-27 17:11 UTC] jerry at gii dot co dot jp
[2007-04-29 14:47 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 01:00:02 2025 UTC |
Description: ------------ dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION) returns FALSE on success and TRUE on failure. This is the reverse of the documentation (and counter-intuitive). The data base server is MySQL 4.1.21-standard running on CentOS 3. Reproduce code: --------------- <?php $dbh = new PDO("mysql:host=$db_hostname;dbname=$db_name", "$db_user_name", "$db_user_pass"); $r_code = $dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); $errmode = $dbh->getAttribute(PDO::ATTR_ERRMODE); echo ($r_code ? "TRUE" : "FALSE") . " | " . $errmode; ?> Expected result: ---------------- It should echo TRUE | 2 Actual result: -------------- FALSE | 2