Mantis - Quercus
|
|||||
Viewing Issue Advanced Details | |||||
|
|||||
ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
1472 | major | always | 11-24-06 08:52 | 05-30-08 16:39 | |
|
|||||
Reporter: | foxtango | Platform: | |||
Assigned To: | ferg | OS: | |||
Priority: | normal | OS Version: | |||
Status: | closed | Product Version: | 3.1.0 | ||
Product Build: | Resolution: | fixed | |||
Projection: | none | ||||
ETA: | none | Fixed in Version: | 3.2.0 | ||
|
|||||
Summary: | 0001472: OutOfMemoryError with OCIFetchStatement | ||||
Description: |
On using OCIFetchStatement in a php page that runs over quercus we receive an OutOfMemoryError exception: "java.lang.OutOfMemoryError: Java heap space" We created a very simple case to reproduce this bug. See in additional info please. |
||||
Steps To Reproduce: | |||||
Additional Information: |
<? function getConnection() { $db = OCILogon('user', 'pass', '//server:1521/ORCL'); return $db; } $db = getConnection(); $curs = OCINewCursor($db); $sql = OCIParse($db, 'BEGIN user.package.sp_xxxx(:return_cursor); END;'); OCIBindByName($sql, ':return_cursor', &$curs, -1, OCI_B_CURSOR); OCIExecute($sql); OCIExecute($curs); $pes = array(); // !!! HERE THE PROBLEM OCCOURS !!! OCIFetchStatement($curs, $pes); ?> |
||||
Relationships | |||||
Attached Files: |
Notes | |||||
|
|||||
|
|
||||
|
|||||
|
|