Access memory leak?

  • Thread starter Thread starter Today
  • Start date Start date
T

Today

I think I am having Access memory leaks and need some
advice on how to avoid them. Also, would it help my
memory resources to programatically attach and unattach a
table? Any help would be appreciated.
 
Also, would it help my
memory resources to programatically attach and unattach a
table?

No, can't think of any reason why that would help
I think I am having Access memory leaks and need some

um...
Avoid errors/exceptions: don't use On Error Resume next.
Avoid temp queries/ dynamic SQL
don't pass objects to VBA library functions: always find values first, then
pass value to VBA library functions.
don't use global objects: always close and release local objects.

You need to identify the action that is causing the memory leak.

(david)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Access memory leak 1
News 419m phone numbers leaked in Facebook data breach 3
Memory leak 1
iOS Source Code Leak 0
Memory Leak Error Message 3
Memory Leak 23
Excel 2007 Charts & Memory Leak?? 7
Memory leak during backup 17

Back
Top