multiplex77
Programmer
Hi,
What would be the negative consequences of not doing garbage collection for database connection objects and recordsets? (i.e., closing them and setting them to Nothing)
Also, is it okay to
Set connectionObj = Nothing
And
Set recordsetObj = Nothing
without first doing
connectionObj.Close and recordsetObj.close?
Thanks for the advice!
What would be the negative consequences of not doing garbage collection for database connection objects and recordsets? (i.e., closing them and setting them to Nothing)
Also, is it okay to
Set connectionObj = Nothing
And
Set recordsetObj = Nothing
without first doing
connectionObj.Close and recordsetObj.close?
Thanks for the advice!