Connection error System.Data.OracleClient

Qbert

Active member
Joined
Jun 11, 2007
Messages
33
Location
Minnesota
Programming Experience
Beginner
i get an error when i try to connect to oracle saying

System.Data.OracleClient requires Oracle client software version 8.1.7 or greater.

i have installed the client but still get that error.

here is how i am trying to connect

Module Globals
Public DBConn As String = "Data Source=(DESCRIPTION=(ADDRESS_LIST=" _
+ "(ADDRESS=(PROTOCOL=TCP)(HOST=INTRANET)(PORT=8080)))" _
+ "(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=XE)));" _
+ "User Id=ianinc;Password=asdfasdf;"
Public IanConnect As New System.Data.OracleClient.OracleConnection(DBConn)

End Module

and then on the form that i am trying to connect with i did this

IanConnect.Open() -- this is where the error occurs
 
Last edited:
Back
Top