php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #38518 Unable to allocate when deleting last row
Submitted: 2006-08-20 09:18 UTC Modified: 2007-07-31 01:00 UTC
Votes:1
Avg. Score:5.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:1 (100.0%)
Same OS:1 (100.0%)
From: jelle at v-essen dot nl Assigned:
Status: No Feedback Package: ODBC related
PHP Version: 5.1.5 OS: Windows XP SP2
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
29 - 16 = ?
Subscribe to this entry?

 
 [2006-08-20 09:18 UTC] jelle at v-essen dot nl
Description:
------------
I've seen more people have emalloc() errors, but their situations seem other than my situation. Whenever I try to delete the last row from a table, it fails. I haven't found a solution in other bug reports.
Oh, yeah: the first time I tried the script, I got a php-cgi.exe error message. When I refreshed the page, I got the emalloc error.

Reproduce code:
---------------
<?php
$adminApplyUpdateID = $_POST['applyID'];
$sqlDeleteApply = "DELETE FROM tblApply
WHERE id = $adminApplyUpdateID";
odbc_exec($conn,$sqlDeleteApply);
?>

Expected result:
----------------
The row where the field id contains variable $adminApplyUpdateID is deleted.

Actual result:
--------------
When only one row is left in the table, and I try to delete it, it fails, and the following message appears.
FATAL: emalloc(): Unable to allocate 1953394532 bytes

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-08-20 09:22 UTC] jelle at v-essen dot nl
This happens whenever I try to delete the last row in a table, not only in this script, but in any of them.
Oh, I forgot to post a part of the code, which might be very useful:

<?php
$connectDriver = 'DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=data.mdb;';
$conn = odbc_connect($connectDriver,'','');
?>

Maybe it's the driver...
 [2007-07-23 12:05 UTC] jani@php.net
Please try using this CVS snapshot:

  http://snaps.php.net/php5.2-latest.tar.gz
 
For Windows (zip):
 
  http://snaps.php.net/win32/php5.2-win32-latest.zip

For Windows (installer):

  http://snaps.php.net/win32/php5.2-win32-installer-latest.msi

And try using the PDO ODBC driver instead. It has been reported to work much better..
 [2007-07-31 01:00 UTC] php-bugs at lists dot php dot net
No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 08:01:28 2024 UTC