php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #35431 PDO crashes on FETCH_LAZY and fetchAll
Submitted: 2005-11-27 21:42 UTC Modified: 2005-11-27 22:02 UTC
From: stochnagara at hotmail dot com Assigned:
Status: Closed Package: PDO related
PHP Version: 5.1.0 OS: windows xp
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: stochnagara at hotmail dot com
New email:
PHP Version: OS:

 

 [2005-11-27 21:42 UTC] stochnagara at hotmail dot com
Description:
------------
PHP crashes when FETCH_LAZY is used in combination with fetchAll. See the sample below.

Reproduce code:
---------------
<?
$pdo = new PDO("sqlite::memory:");
$pdo->query ("CREATE TABLE test (a integer primary key, b text, c integer)");
$pdo->query("insert into test (b, c) values (1, 2)");
var_dump($pdo->query ("select a, b, c from test")->fetchAll(PDO::FETCH_LAZY));


Expected result:
----------------
no error

Actual result:
--------------
Apache crashes

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-11-27 22:02 UTC] wez@php.net
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.
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Sat Feb 01 09:01:31 2025 UTC