I read this article: http://www.utteraccess.com/wiki/Recordsets_for_Beginners, and it says that it\'s important for me to close and destroy RS\'s like this: rs.close
S
rs.close cleans up the resources that are used internally, however because ASP is a single process that doesn't have any GC the Set rs = Nothing aids in the clean up.
It de-references your objects, without it you'll have a memory leak. nice isn't it?