Trying to use ADO in my Visual Basis Express 2010 project. I have included a reference to "Microsoft ActiveX Data Objects 6.1 Library" and this works:
The various adXXX variables are however not available:
Do I have to add another reference?
Code:
Public con As New ADODB.Connection
Code:
Public Enum rrCursorType
rrOpenDynamic = adOpenDynamic
rrOpenForwardOnly = adOpenForwardOnly
rrOpenKeyset = adOpenKeyset
rrOpenStatic = adOpenStatic
End Enum