G
Guest
Hi;
I have to write custom data integrity utilities comparing files with table
data.
I've found that looping through an ado recordset will cause memory problems
if it's a large recordset.
I'm using this sort of syntax:
adoRSdir = adocn.Execute(sSQL, lrecs)
Do Until adoRSdir.EOF = True
'this loop is running out of memory
Loop
How can you monitor if you're going to run out of memory?
What technique would be better other than narrowing the sql
querystring result set?
Thanks for your knowledge.
Best Regards;
Todd
I have to write custom data integrity utilities comparing files with table
data.
I've found that looping through an ado recordset will cause memory problems
if it's a large recordset.
I'm using this sort of syntax:
adoRSdir = adocn.Execute(sSQL, lrecs)
Do Until adoRSdir.EOF = True
'this loop is running out of memory
Loop
How can you monitor if you're going to run out of memory?
What technique would be better other than narrowing the sql
querystring result set?
Thanks for your knowledge.
Best Regards;
Todd