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
 [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

Add a Patch

Pull Requests

Add a Pull Request

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-2024 The PHP Group
All rights reserved.
Last updated: Tue Mar 19 03:01:29 2024 UTC