通过控制台应用程序连接到 Oracle,不能通过 Web 服务连接

发布于 2024-10-11 12:58:50 字数 384 浏览 11 评论 0原文

我无法通过 asmx Web 服务连接到 Oracle 模式,而可以通过控制台应用程序 [x86] 连接到 Oracle 模式。

代码:

var conn = new OracleConnection("Data Source=xe;User ID=mySchema;Password=myPass");

例外:

ORA-12154: TNS:could not resolve the connect identifier specified

环境: Windows 7 x64 - VS 2008。

有什么想法吗?

请向我询问任何额外信息

提前致谢。

I can't connect to an Oracle schema through a asmx web service instead of I can through a console application [x86].

The code:

var conn = new OracleConnection("Data Source=xe;User ID=mySchema;Password=myPass");

The exception:

ORA-12154: TNS:could not resolve the connect identifier specified

The environment: Windows 7 x64 - VS 2008.

Any idea?

kindly ask me for any extra information

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

万水千山粽是情ミ 2024-10-18 12:58:50

ODP(或本机 Oracle 客户端层)所基于的 Oracle 客户端层 OCI 有一个错误,该错误会阻止位于包含括号 () 的文件夹中的任何应用程序正常运行。

自从 Program Files ( x86) 文件夹...

运行应用程序的主机(通常是 IIS)可能位于 x86 文件夹中,因此会出现问题。您的控制台应用程序运行良好,因为它可能位于不存在问题的文件夹中。

更多信息和一些解决方案 此处

OCI, the Oracle client layer on which ODP (or the native Oracle client layer) is based has a bug that prevents any application located in a folder containing parentheses () from running properly

This bug is very visible since the apparition of the Program Files (x86) folder...

The host running your application (typically IIS) is probably located in the x86 folder, hence the issue. Your console app works fine because it's probably located in a folder that does not have the issue.

More info and a few solutions here.

孤蝉 2024-10-18 12:58:50

我无论如何都不是 Oracle 人,但我在其他数据库中也遇到过类似的情况。我们遇到的问题是 DSN 是作为用户 DSN 而不是系统 DSN 创建的。我不知道 Oracle 数据源是如何创建的,但我会检查一下。

I'm not an Oracle guy in any way but I've run into similar situations in other databases. The problem we had was that the DSN was created as a User DSN and not a System DSN. I don't know how Oracle data sources are created but I would check this out.

怀里藏娇 2024-10-18 12:58:50

我遇到了完全相同的问题。我通过引用 Oracle.ManagedDataAccess.dll 而不是 Oracle.DataAccess.dll 来解决。

I got the exact same issue. I resolved by referencing Oracle.ManagedDataAccess.dll instead of Oracle.DataAccess.dll.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文