Edit report at http://bugs.php.net/bug.php?id=49730&edit=1
ID: 49730 Updated by: [email protected] Reported by: marcink86 at interia dot eu Summary: Firebird - new PDO() returns NULL in CLI Status: Open Type: Bug Package: PDO related -Operating System: Windows Vista +Operating System: * -PHP Version: 5.2.11 +PHP Version: 5.2 only New Comment: I can reproduce it. 5_2 only. Previous Comments: ------------------------------------------------------------------------ [2010-02-04 18:20:18] nicolas dot rod at gmail dot com I forgot to mention that sometimes in Windows you have to modify file c:\windows\system32\drivers\etc\services. You need to add the following line in order to connect to the GDS services: gds 3050/tcp #Firebird Database port number And that's it. It took me 2 hours to read the error message and realize what the problem was. ------------------------------------------------------------------------ [2010-02-04 18:14:03] nicolas dot rod at gmail dot com The DSN in the test.php above is incorrect: <?php $pdo = new PDO("firebird:host=localhost;dbname=TESTDB", "sysdba", "masterkey"); var_dump($pdo); ?> it should be: <?php $pdo = new PDO("firebird:dbname=localhost:TESTDB", "sysdba", "masterkey"); var_dump($pdo); ?> ------------------------------------------------------------------------ [2009-10-02 20:01:04] marcink86 at interia dot eu Anyone to comfirm? Is it going to be fixed? ------------------------------------------------------------------------ [2009-10-01 11:10:25] marcink86 at interia dot eu Note that in my case DSN is correct and NULL should not be returned in CLI. ------------------------------------------------------------------------ [2009-10-01 11:03:46] [email protected] See also Bug #49320 PDO returns null when SQLite connection fails ------------------------------------------------------------------------ The remainder of the comments for this report are too long. To view the rest of the comments, please view the bug report online at http://bugs.php.net/bug.php?id=49730 -- Edit this bug report at http://bugs.php.net/bug.php?id=49730&edit=1
