ID:               35386
 Comment by:       turyak at gmail dot com
 Reported By:      slapaf at hotmail dot com
 Status:           Assigned
 Bug Type:         PDO related
 Operating System: winxp sp2
 PHP Version:      5CVS-2006-12-02 (snap)
 Assigned To:      wez
 New Comment:

yep, experiencing same problem..
php 5.1.2, firebird 1.5.2
is there solution already?


Previous Comments:
------------------------------------------------------------------------

[2005-11-25 11:38:32] slapaf at hotmail dot com

Description:
------------
When using PDO for simple query in Firebird it returns first row as
null.
I've tried using ADODB for control and it returns the correct results. 

Reproduce code:
---------------
$dbh = new PDO("firebird:dbname=localhost:test.fdb","****","******");
        $sql='SELECT EVENT_NAME FROM EVENTS';

        foreach($dbh->query($sql) as $row){
                print '<pre>'.gettype($row['EVENT_NAME']).' : 
'.$row['EVENT_NAME'];
        }

Expected result:
----------------
string : name 1

string : name 2

string : name 3

string : name 4

Actual result:
--------------
NULL : 

string : name 2

string : name 3

string : name 4


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=35386&edit=1

Reply via email to