is it possible to make a connection to oracle using ado.net and the the oracle odbc, and if so how? If not what are my options to make this connection for ado.net or can i just use regular ado?
Printable View
is it possible to make a connection to oracle using ado.net and the the oracle odbc, and if so how? If not what are my options to make this connection for ado.net or can i just use regular ado?
Imports System.Data.ODBC
Dim oODBCConnection As Odbc.OdbcConnection
Dim sConnString As String = _
"Driver={Microsoft ODBC for Oracle};" & _
"Server=OracleServer.world;" & _
"Uid=myUsername;" & _
"Pwd=myPassword;"
oODBCConnection = New Odbc.OdbcConnection(sConnString)
oODBCConnection.Open()