"The provider is not compatible with the version of Oracle client"
Posted
by psyb0rg
on Stack Overflow
See other posts from Stack Overflow
or by psyb0rg
Published on 2010-06-11T01:17:00Z
Indexed on
2010/06/11
1:22 UTC
Read the original article
Hit count: 313
I just put my asp .net web service on a remote host. The service accesses an oracle db on my local machine. The service worked fine when it was running on localhost but since moving to a remote hos, I get
The provider is not compatible with the version of Oracle client at Oracle.DataAccess.Client.OracleInit.Initialize() at Oracle.DataAccess.Client.OracleConnection..cctor() --- End of inner exception stack trace --- at Oracle.DataAccess.Client.OracleConnection..ctor(String connectionString) at....
I know the error is related to the data provider version running on the server/client. In my case, the only dll I referenced in the project was Oracle.DataAccess
So how do I go about solving this? Note that I won't be able to change anything on the web host other than my own project.
My local machine is running Oracle 11g
Thanks.
© Stack Overflow or respective owner