ADO memory leaks

  • Thread starter Thread starter Peter A. Smirnoff
  • Start date Start date
P

Peter A. Smirnoff

Hi everyone!

1) I write a simple program using ADO.(Connect-Disconnect). When, I explored
it in Numega Bounds Checker. There was a lot, lot of memory and resource
leaks. (up to ~200k) WHY?


Thx in adv,
Peter
 
Are you sure it's a real leak? An unbounded increase in private bytes, as
opposed to a bounded increase which suggests a caching mechanism?

If you're using BoundsChecker, it will tell you where the memory is
allocated, which would give you a hint as to what to do to fix the leak.

Otherwise, post a very small piece of code here which demonstrates the
problem, so that others can take a look at it and give you some suggestions.
 
Back
Top