“Oracle.DataAccess.dll”针对“AMD64”;与项目的目标平台“x86”不兼容;

发布于 2024-10-22 06:10:25 字数 156 浏览 6 评论 0原文

当我创建 MSI 包时,我收到标题中显示的以下错误。

我的项目环境是

  1. 项目使用32位Visual Studio
  2. oracle客户端是64位。

我还可以让 msi 项目使用上述环境工作吗?如果是,我该怎么做

I am receiving the following error shown in the Title, when i create a MSI Package.

My Environment of project is

  1. Project uses 32 bit visual studio
  2. oracle client is 64 bit.

can i still may the msi project to work using the above environment.. if yes how can i do it

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

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

发布评论

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

评论(3

孤单情人 2024-10-29 06:10:25

我会切换到 32 位客户端。如果您要生成 32 位代码,则需要 32 位客户端库。幸运的是,它们与 64 位客户端一起安装,如果是这种情况,它们位于 ORACLE_HOME/lib32/ 中,在这种情况下,您可以尝试使用指向 lib32 目录的 LIBRARY_PATH 设置。
连接什么类型的数据库,32 位还是 64 位服务器,并不重要,使用 32 位客户端都可以正常连接。

I would switch to the 32-bits client. If you are supposed to generate 32-bits code, you need the 32-bits client libs. With a little luck they are installed together with the 64-bits client, if that is the case they are in ORACLE_HOME/lib32/ and in that case you could try using LIBRARY_PATH settings pointing to the lib32 directory.
It is not very important to what kind of database you connect, 32-bits or 64-bits server, both will connect ok using the 32-bits client.

温馨耳语 2024-10-29 06:10:25

是的,你可以让它发挥作用。您需要在开发计算机上安装这两个版本。在调试期间使用 32 位版本,在不使用 Visual Studio 的情况下部署或测试应用程序时使用 64 位版本。

Yes, you can get it to work. You need to install both versions on your development machine. The 32bit version is used during debugging and the 64bit version when you deploy or test the application without Visual Studio.

白芷 2024-10-29 06:10:25

不可以。您不能在同一台计算机上的 .NET 应用程序中混合使用 32 位和 64 位应用程序。

No. You cannot mix 32 and 64 bit applications in a .NET application on the same machine.

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