|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-07-20 01:03 UTC] felipe@php.net
[2009-07-20 01:05 UTC] felipe@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 21:00:01 2025 UTC |
Description: ------------ The PDO driver Firebird if the type of field is date only return the first value the other records are empty The system setup is Linux Open Suse 11.1 Apache 2.2.11 PHP 5.3.0RC3 compiled and installed manually Firebird 2.1 Reproduce code: --------------- // ... $dsn = 'firebird:dbname=XXXXX'; require_once('bootstrap.php'); $stmt = $conn->prepare('SELECT * FROM SOLICITUD'); $stmt->execute(); $results = $stmt->fetchall(); print_r($results); Expected result: ---------------- ID DATE 1 2005-01-01 2 2005-01-02 3 2005-01-03 Actual result: -------------- ID DATE 1 2005-01-01 2 3