php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #51675 OCIFetchInto
Submitted: 2010-04-27 16:40 UTC Modified: 2012-10-26 05:13 UTC
From: miguelaabraham at gmail dot com Assigned:
Status: No Feedback Package: OCI8 related
PHP Version: 5.2.13 OS: Itanium IA64
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 this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: miguelaabraham at gmail dot com
New email:
PHP Version: OS:

 

 [2010-04-27 16:40 UTC] miguelaabraham at gmail dot com
Description:
------------
function next_record()
{
   if ($this->max_rows > 0)
      if (count($this->records) >= $this->max_rows)
      {
         $this->max_reached = true;
	 return false;
      }
		
      $this->currentRecord = array();
      return OCIFetchInto($this->stmt, $this->currentRecord, 
                          OCI_ASSOC + OCI_RETURN_NULLS);
}


Actual result:
--------------
[Tue Apr 27 10:35:03 2010] [error] [client xx.x.xx.xxx] PHP Fatal error:  Allowed memory size of 1073741824 bytes exhausted (tried to allocate 76 bytes) in .....

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2010-04-27 17:32 UTC] johannes@php.net
-Status: Open +Status: Feedback
 [2010-04-27 17:32 UTC] johannes@php.net
Please provide a complete script including the SQL and table definition.
 [2010-04-29 06:20 UTC] sixd@php.net
If you're using LOBS, try OCI8 1.4.1 from http://pecl.php.net/package/oci8/1.4.1 
(or use PHP 5.3.2+) The delayed LOB cleanout prior to this version is known to 
cause memory shortages for heavy LOB users.  Also see 
http://blogs.oracle.com/opal/2010/03/reducing_oracle_lob_memory_use.html
 [2012-10-26 05:13 UTC] sixd@php.net
-Status: Feedback +Status: No Feedback
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Apr 20 15:01:29 2024 UTC