Hi everyone,
I'm trying to connect to an oracle db from an odbc connection, the odbc connection is set and works properly when we test it. However when I try to connect to through ASP classic I keep getting that msg. I'm also able to connect to it through SQLPLUS and able to ping it with tnsping
<%
Dim connection : Set connection = Server.CreateObject("ADODB.Connection")
Dim connectionString : connectionString = "Provider=MSDAORA.1; Password=Test;User ID=Test; Data Source=DBSOURCE"
connection.Open connectionStringResponse.Write Err.Number
%>
this works on a co-worker machine but not mine.
Thanks for the help everyone.