Hi,
When I setup my ADO connection like this...
Dim DBConnect As New ADODB.Connection
Dim A As New ADODB.Recordset
Dim B As New ADODB.Recordset
With DBConnect
If .State = ADODB.ObjectStateEnum.adStateOpen Then .Close()
.Open("MyTable","MySQLstring",blah,blah,blah)
End With
with the ADODB(2.7) reference added to my project am I using ADO.net?
FoxT
When I setup my ADO connection like this...
Dim DBConnect As New ADODB.Connection
Dim A As New ADODB.Recordset
Dim B As New ADODB.Recordset
With DBConnect
If .State = ADODB.ObjectStateEnum.adStateOpen Then .Close()
.Open("MyTable","MySQLstring",blah,blah,blah)
End With
with the ADODB(2.7) reference added to my project am I using ADO.net?
FoxT