ID: 49730 Updated by: sjo...@php.net Reported By: marcink86 at interia dot eu Status: Open Bug Type: PDO related Operating System: Windows Vista PHP Version: 5.2.11 New Comment:
See also Bug #49320 PDO returns null when SQLite connection fails Previous Comments: ------------------------------------------------------------------------ [2009-10-01 06:22:16] marcink86 at interia dot eu Description: ------------ I created a file test.php: <?php $pdo = new PDO("firebird:host=localhost;dbname=TESTDB", "sysdba", "masterkey"); var_dump($pdo); ?> Note that there exists an alias TESTDB to *FDB file in Firebird configuration. When I 'run' this file in a web browser i get: object(PDO)#1 (0) { } which I think is correct since after var_dump($pdo) I can retrieve records from this database without any problem. However, in command line ("php test.php" in cmd) var_dump($pdo) returns NULL. Is it correct? It causes many problems espacially in a Symfony framework (>=1.2) where you build sql files and execute them through command line. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=49730&edit=1