Has anyone faced this error: Out of memory (Needed 48984 bytes) before?

Here are the details:

I have a DLL file that contains some mathematical algorithms implemented. These algorithms need around 10k values for their calculation. So we have stored 10k values ina MYSQL database. The DLL uses MYSQL C APIs to import the 10k values and does calculations. It works fine but if I keep the DLL running continuously I get following error -- Out of memory (Needed 48984 bytes).

I hope this explanation would help you to understand issue. I cannot share the code as I have only DDL file.

link|improve this question

50% accept rate
Did you change anything else than the title from your previous question that was closed? – Jens Gustedt Sep 27 '11 at 6:07
possible duplicate of Out of memory (Needed 48984 bytes) – Jonathan Leffler Sep 27 '11 at 6:09
Yes i did. I have put the question once again with more information as per requested – Yogi Sep 27 '11 at 6:35
feedback

1 Answer

It sounds like you have a monumental memory leak. Maybe there is a method in the DLL that you should be using to release the 10k values read from the MySQL database?

link|improve this answer
Thanks Jonathan. I observed that i was not using mysql_free_result() [which Frees the memory allocated for a result set by mysql_store_result()] at right place. It is working fine now but i will keep the DLL running for next couple of days. Let see whether the issue is resolved or not. – Yogi Sep 27 '11 at 8:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.