What do you mean by delete? Delete all the records in the
recordset from the original table? If so, then the answer
is it depends on the method used to open it. Snapshots,
Forward-only, and read only's the answer would be no. For
Keysets:
rst.movefirst
do until rst.eof
rst.delete
rst.movenext
loop
If you just want to destroy the variable:
Set rst = nothing
That clears out the recordset from memory, but the
underlying records are intact.
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.