Board index » delphi » Memory Leak with ADO/Access
damian marquez
![]() Delphi Developer |
Fri, 14 Mar 2003 03:00:00 GMT
Memory Leak with ADO/Access
I have an app which opens up a form with 7 adodatasets.
One of them is of "dmFile" commandtype ( I use it as temporary storage). On opening, the app is taking 6mb memory. After clicking a button, I run a procedure which opens the 7 adodatasets & does a recursive process. After that, my app is using up 17mb memory, and when closing the form, I am still using that 17mb memory (if I reload the form I will be using more...) Any idea to help me....? Ah, the recursive call could also be a problem, but I couldn't find any alternative. It looks like this: procedure recursiveProc(someparam) var b: tbookmark; begin |