Recordset close and set to nothing one-liner
I remember there was a shorthand syntax t开发者_StackOverflowhat was commonly used to close the recordset and set it to nothing in one line it used a syntax like
rst.Close := Nothing
But cannot remember the right syntax, anybody out there with a better memory than mine? Google couldn't help in this case.
Could it be this?
rst.Close : set rst = nothing
HTH
精彩评论