ID: 48057
User updated by: info at programmiernutte dot net
Reported By: info at programmiernutte dot net
-Status: Feedback
+Status: Open
Bug Type: PDO related
Operating System: *
PHP Version: 5.3.0RC1
New Comment:
Worse, the only row that would be complete is nulled because of an
older bug:
array(4) {
["ID"]=>
NULL
[0]=>
NULL
["BAR"]=>
NULL
[1]=>
NULL
}
array(4) {
["ID"]=>
string(1) "2"
[0]=>
string(1) "2"
["BAR"]=>
string(0) ""
[1]=>
string(0) ""
}
array(4) {
["ID"]=>
string(1) "3"
[0]=>
string(1) "3"
["BAR"]=>
string(0) ""
[1]=>
string(0) ""
}
Previous Comments:
------------------------------------------------------------------------
[2009-04-27 17:05:30] [email protected]
Does this happen with PHP 5.2.9 ?
------------------------------------------------------------------------
[2009-04-23 07:26:14] info at programmiernutte dot net
Description:
------------
PDO::fetch() only returns date fields on the first call.
subsequent calls return empty strings instead of dates.
Configure Command => './configure' '--
prefix=/usr/local/php' '--with-apxs2' '--without-pdo-sqlite'
'--without-mysql'
php.ini-settings don't seem to matter, I only have these:
date.timezone = "Europe/Berlin"
include_path = "/Library/WebServer/php-includes/"
allow_call_time_pass_reference = Off
expose_php = Off
magic_quotes_gpc = Off
register_argc_argv = Off
output_buffering = On
plus settings for xdebug, apc and memcache, I already tried
disabling them, no difference.
PDO_FIREBIRD is loaded as an
extension:extension=pdo_firebird.so
Reproduce code:
---------------
isql:
SQL> create database 'test.fdb';
SQL> CREATE TABLE FOO (ID INTEGER, BAR DATE);
SQL> INSERT INTO FOO (ID, BAR) VALUES ('1', '11.04.2009');
SQL> INSERT INTO FOO (ID, BAR) VALUES ('2', '12.04.2009');
SQL> INSERT INTO FOO (ID, BAR) VALUES ('3', '13.04.2009');
php:
<?php
$oPDO = new PDO(
'firebird:dbname=localhost:test.fdb;charset=ISO8859_1',
'sysdba',
'masterkey',
array(
PDO::ATTR_PERSISTENT => true,
PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_OBJ
)
);
$oStmt = $oPDO->query('select id, bar from foo');
foreach($oStmt as $oRow)
{
var_dump($oRow);
}
?>
Expected result:
----------------
object(stdClass)#3 (2) {
["ID"]=>
string(1) "1"
["BAR"]=>
string(10) "2009-04-11"
}
object(stdClass)#4 (2) {
["ID"]=>
string(1) "2"
["BAR"]=>
string(10) "2009-04-12"
}
object(stdClass)#3 (2) {
["ID"]=>
string(1) "3"
["BAR"]=>
string(10) "2009-04-13"
}
Actual result:
--------------
object(stdClass)#3 (2) {
["ID"]=>
string(1) "1"
["BAR"]=>
string(10) "2009-04-11"
}
object(stdClass)#4 (2) {
["ID"]=>
string(1) "2"
["BAR"]=>
string(0) ""
}
object(stdClass)#3 (2) {
["ID"]=>
string(1) "3"
["BAR"]=>
string(0) ""
}
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=48057&edit=1