php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #39398 No cast of logic type and silence
Submitted: 2006-11-06 11:56 UTC Modified: 2006-11-07 17:57 UTC
From: develar at gmail dot com Assigned:
Status: Closed Package: PDO related
PHP Version: 5.2.0 OS: Debian 3
Private report: No CVE-ID: None
 [2006-11-06 11:56 UTC] develar at gmail dot com
Description:
------------
PDO does not cast a variable with boolean type in bindValue, does not do execute and is silent.

I should cast manually - (int).

Reproduce code:
---------------
CREATE TABLE `test` (
  `test` tinyint(1) NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

$Db = new PDO('mysql:host=localhost;dbname=test', 'root', '');
$Db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$Db->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC);

$boolean = 1;
$Pdo = $Db->prepare('INSERT INTO test VALUES (:boolean)');
$Pdo->bindValue(':boolean', isset($boolean), PDO::PARAM_INT);
$Pdo->execute();

Expected result:
----------------
array(1) { [0]=> array(1) { ["test"]=> string(1) "1" } }

Actual result:
--------------
array(0) { }

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-11-06 11:59 UTC] develar at gmail dot com
var_dump($Db->query('SELECT * FROM test')->fetchAll());
 [2006-11-07 17:57 UTC] iliaa@php.net
This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 08:02:42 2024 UTC