From:             marcink86 at interia dot eu
Operating system: Windows Vista
PHP version:      5.2.11
PHP Bug Type:     PDO related
Bug description:  Firebird - new PDO() returns NULL in CLI

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 bug report at http://bugs.php.net/?id=49730&edit=1
-- 
Try a snapshot (PHP 5.2):            
http://bugs.php.net/fix.php?id=49730&r=trysnapshot52
Try a snapshot (PHP 5.3):            
http://bugs.php.net/fix.php?id=49730&r=trysnapshot53
Try a snapshot (PHP 6.0):            
http://bugs.php.net/fix.php?id=49730&r=trysnapshot60
Fixed in SVN:                        
http://bugs.php.net/fix.php?id=49730&r=fixed
Fixed in SVN and need be documented: 
http://bugs.php.net/fix.php?id=49730&r=needdocs
Fixed in release:                    
http://bugs.php.net/fix.php?id=49730&r=alreadyfixed
Need backtrace:                      
http://bugs.php.net/fix.php?id=49730&r=needtrace
Need Reproduce Script:               
http://bugs.php.net/fix.php?id=49730&r=needscript
Try newer version:                   
http://bugs.php.net/fix.php?id=49730&r=oldversion
Not developer issue:                 
http://bugs.php.net/fix.php?id=49730&r=support
Expected behavior:                   
http://bugs.php.net/fix.php?id=49730&r=notwrong
Not enough info:                     
http://bugs.php.net/fix.php?id=49730&r=notenoughinfo
Submitted twice:                     
http://bugs.php.net/fix.php?id=49730&r=submittedtwice
register_globals:                    
http://bugs.php.net/fix.php?id=49730&r=globals
PHP 4 support discontinued:          http://bugs.php.net/fix.php?id=49730&r=php4
Daylight Savings:                    http://bugs.php.net/fix.php?id=49730&r=dst
IIS Stability:                       
http://bugs.php.net/fix.php?id=49730&r=isapi
Install GNU Sed:                     
http://bugs.php.net/fix.php?id=49730&r=gnused
Floating point limitations:          
http://bugs.php.net/fix.php?id=49730&r=float
No Zend Extensions:                  
http://bugs.php.net/fix.php?id=49730&r=nozend
MySQL Configuration Error:           
http://bugs.php.net/fix.php?id=49730&r=mysqlcfg

Reply via email to