ID:               33184
 Updated by:       [EMAIL PROTECTED]
 Reported By:      brad_allgood at csgsystems dot com
-Status:           Open
+Status:           Bogus
 Bug Type:         ODBC related
 Operating System: Windows XP
 PHP Version:      5.0.4
 New Comment:

SQL0954C        Not enough storage is available in the application heap to
process the statement.

Explanation: All available memory for the application has been used.

The statement cannot be processed.

User Response: Terminate the application on receipt of this message.
Increase the database configuration parameter (applheapsz) to allow a
larger application heap. 


Previous Comments:
------------------------------------------------------------------------

[2005-05-30 15:17:32] brad_allgood at csgsystems dot com

Description:
------------
Appears to be a resurface of bug id #16221 from 4.1.2

After doing between 50-182 query's to IBM DB2 7 on Windows 2000
(localhost) with this script:

<?
$connection = odbc_connect( "test","db2admin", "admin" ) 
or die("Unable to connect to SQL server");
                }
$result=odbc_exec($connection,"set current sqlid = 'DB2ADMIN'");                
                
$counter=0;
while ($counter <5000)
{
$query="select * from tms_user";
$result=odbc_exec($connection,$query);
$temp=odbc_fetch_row ($result);
echo "counter= $counter <br>";
odbc_free_result($result);
odbc_close_all();

$counter++;
}
?>




------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=33184&edit=1

Reply via email to