6
I have 2 projects (Webforms and Windows Services) in . Netframework 4 that connects to Oracle base via Obdcconnection.
In the Web project I can successfully open the connection...
But in Windows Services the following error is released:
ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
In English: ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified.
In both projects I am using the following method:
public void testConnectionObdc(string connectionString)
{
OdbcConnection conn = new OdbcConnection(connectionString);
conn.Open();
}
thank you, that was it!
– Will Knippelberg