Link to home
Start Free TrialLog in
Avatar of robrodp
robrodpFlag for Mexico

asked on

closing a recordset

Once a recorset is closed is it necesary to set it to nothing?

If so what is the statement?

Rs=nothing
Set Rs=nothing?

What happens if this is not done?
Avatar of golfDoctor
golfDoctor

Yes, it frees up the resources used to intitalize it, and disconnects from the source.
ASKER CERTIFIED SOLUTION
Avatar of golfDoctor
golfDoctor

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of robrodp

ASKER

So te correct sytax is:

Set rs=nothing
correct.