ID: 41365
Updated by: [EMAIL PROTECTED]
Reported By: jrags at jasrags dot net
-Status: Open
+Status: Feedback
Bug Type: PDO related
Operating System: Fedora Core 5
PHP Version: 5.2.2
New Comment:
Cannot reproduce, your code works perfectly fine with MySQL 5.0.26 &
PHP 5.2.2.
Previous Comments:
------------------------------------------------------------------------
[2007-05-11 14:40:21] jrags at jasrags dot net
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
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=41365&edit=1