ODAC Issue - ORA-24315: illegal attribute type
I'm puzzled. I'm getting a connection error when the Open method is called.
Imports Oracle.DataAccess.Client
Imports Oracle.DataAccess.Types
...
Dim conn As New OracleConnection("User Id=system;Password=xxxxx;Data Source=xe;")
Try
conn.Open()
MsgBox("Connected to " & Me.conDB)
Catch ex As Exception
MsgBox("Connection Failure" & vbCrLf & ex.Message)
End Try
...
I imagine I am not doing something correctly but I cannot see it. Any clues?
TIA
Steven E. Davies