|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-05-11 15:22 UTC] tony2001@php.net
[2007-05-11 15:29 UTC] jrags at jasrags dot net
[2007-05-19 01:00 UTC] php-bugs at lists dot php dot net
[2015-12-15 18:59 UTC] cruxic at gmail dot com
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 07:00:01 2025 UTC |
Description: ------------ getting a sql hydrate issue when attempting to retireive a result set from MySQL 5.0.26 on PHP 5.2.0. Specificly when using PARAM_BOOL. When i search for a specific 1 or 0 i can retrieve data. FROM PECL BUG: [2007-01-24 14:25 UTC] mailing_lists at andersground dot net The same is true for insert and update statements as well - even worse is that in this case no error is produced, the statement just silently fails. The same behaviour occurs when I bind a boolean variable explicitly with PDO::PARAM_INT - I'd expect that at least in this case typecasting happens: $sth->bindValue(1, true, PDO::PARAM_INT); fails in the same way. Reproduce code: --------------- $dbh = new PDO('mysql:host=localhost;dbname=test', $user, $pass); $sql = 'SELECT * FROM tbl_address WHERE tbl_address.is_active = ?'; $sth = $dbh->prepare($sql); $sth->bindValue(1, true, PDO::PARAM_BOOL); $sth->execute(); while($row = $sth->fetch(PDO::FETCH_NUM)) { print_r($row); } Expected result: ---------------- I would expect data to be returned. Actual result: -------------- PDOException Description SQLSTATE[HY000]: General error: 2053 Source File