ID: 39845
Updated by: [EMAIL PROTECTED]
Reported By: olivier at elma dot fr
-Status: Open
+Status: Assigned
Bug Type: PDO related
Operating System: Debian unstable
PHP Version: 5.2.0
-Assigned To:
+Assigned To: wez
Previous Comments:
------------------------------------------------------------------------
[2006-12-15 16:16:05] olivier at elma dot fr
Just to be more specific about my php version:
$ php --version
PHP 5.2.0-7 (cli) (built: Nov 24 2006 14:36:54)
Copyright (c) 1997-2006 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2006 Zend Technologies
------------------------------------------------------------------------
[2006-12-15 16:09:29] olivier at elma dot fr
Description:
------------
Since I upgraded from php 5.1.x to php 5.2.0 persistent connections
doesn't work anymore.
PDO keeps telling me the driver does not support this functionnality.
Reproduce code:
---------------
<?php
try {
$dbh = new PDO('pgsql:host=localhost dbname=amarok user=slaanesh',
'slaanesh', 'XXXXXX', array(PDO::ATTR_PERSISTENT => true));
echo "Connected\n";
} catch (Exception $e) {
echo "Failure: " . $e->getMessage();
}
?>
Expected result:
----------------
Connected
Actual result:
--------------
Warning: PDO::__construct(): SQLSTATE[IM001]: Driver does not support
this function: driver does not support setting attributes in
/home/slaanesh/pdo.php on line 3
Connected
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=39845&edit=1