ID: 25623
User updated by: maoy at fjii dot com
-Summary: Memory leak
Reported By: maoy at fjii dot com
Status: Open
Bug Type: OCI8 related
Operating System: Windows XP
PHP Version: 4.3.3
New Comment:
memory leak size relate with value of the field, it also increase along
with running times
Previous Comments:
------------------------------------------------------------------------
[2003-09-21 22:38:20] maoy at fjii dot com
Description:
------------
Web Server: Apache 1.3.26
When I get value of a field as Clob type, it always cause memory leak.
Reproduce code:
---------------
<?php
$conn = ocilogon("username","password");
$query = "SELECT clob_fldname FROM tablename";
$stmt = OCIParse ($conn, $query);
OCIExecute($stmt, OCI_DEFAULT);
$result = OCIResult($stmt, "clob_fldname");
if (is_object ($result)) $result = $result->load();
?>
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=25623&edit=1