Connection String to connect to an Oracle DB in a remote server

  • Thread starter Thread starter toamitha
  • Start date Start date
T

toamitha

Can u please show me the Connection String to connect to an Oracle DB
in a remote
Server using VB.NET Application.
 
Can u please show me the Connection String to connect to an Oracle DB
in a remote
Server using VB.NET Application.

Here's my web.config entry for a remote Oracle 10g connection:

<add name="myRemoteOracleConn" connectionString="user
id=scott;password=tiger;data
source=(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=remoteMachineName)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=myNetServiceName)))"/>
 
Back
Top