mhectorgato
Programmer
My VB.NET application uses ADO 2.x to connect to a SQL2000 database. It uses a static recordset to read/write data in a random access mode - using the AbsolutePosition property to navigate forward and backwards through the recordset.
Since I'm not using ADO.NET, I assume that this using unmanaged resources. However, I don't see any way to dispose those objects.
How do I properly clean up these objects - connection and recordset?
Do I just set them to nothing after closing them?
Thanks for the help
Since I'm not using ADO.NET, I assume that this using unmanaged resources. However, I don't see any way to dispose those objects.
How do I properly clean up these objects - connection and recordset?
Do I just set them to nothing after closing them?
Thanks for the help