ID:               42643
 Updated by:       [EMAIL PROTECTED]
 Reported By:      jkkn at tv2 dot dk
-Status:           Open
+Status:           Closed
 Bug Type:         PDO related
 Operating System: Red Hat Enterprise Linux E
 PHP Version:      5.2.4
 New Comment:

This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.




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

[2007-09-12 15:29:53] jkkn at tv2 dot dk

Description:
------------
If ATTR_PERSISTENT is set to true and running a php-script using the
CLI.
The script segmentation faults at the end of execution (not during)


Reproduce code:
---------------
<?php
$pdo = new PDO('mysql:host=xxxx;dbname=yyyy', 'wwww', 'pppp',
                    array(PDO::ATTR_PERSISTENT => true));
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

$x = $pdo->prepare('SELECT 1');
$x->execute();
$row = $x->fetch();

var_dump($row);
?>

Expected result:
----------------
No segmentation faults.

Actual result:
--------------
Script runs fine, but segmentation faults after execution.


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


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

Reply via email to