>List,
> I think I saw this one on here before...when reading/writing the database 
>I get this when executing odbc_exec(...);  What was the fix?
>
>
>
>FATAL:  emalloc():  Unable to allocate 1073784417 bytes

This generally means that you tried to suck in a zillion bytes to a
variable, and PHP only has so much RAM, and, well, it's too much...

In this instance, you are attempting to get 1,073,784,417 bytes, which is,
oh, about a *GIG* of RAM into one variable...

Don't do that. :-)

-- 
Like Music?  http://l-i-e.com/artists.htm


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to