I’m a little confused over the correct or best way to close off variables rs and db. I’ve seen examples that use rs.Close and some that use Set rs = Nothing and I’ve ended up using both in my code so that my usual code looks like:
Set rs = Nothing
rs.Close
Set db = Nothing
db.Close
What’s right?