gpt4 book ai didi

.net - 需要在 "oracle-less"机器上部署 .net 应用程序(从服务器查询 oracle 数据库)?

转载 作者:行者123 更新时间:2023-12-01 14:00:16 41 4
gpt4 key购买 nike

我是一名初级 .net 开发人员。我开发了一个简单的客户端应用程序 (.net3.5),它需要从 10g oracle 数据库服务器获取结果。此应用程序将部署在 100 个未安装 oracle 但可以访问服务器的 32 位系统中。我们不打算让用户在他们的机器上安装 oracle。那可能吗?我关注了http://www.splinter.com.au/using-the-new-odpnet-to-access-oracle-from-c/无论此链接中说了什么,它都会生成链接底部提到的版本不匹配错误。它是否可以在用户机器上没有 oracle 客户端的情况下工作,因为它在我的机器上工作正常,因为它安装了 oracle。还有其他方法可以解决这个问题吗?

我的连接字符串是:

OracleConnection conn = new OracleConnection();
conn.ConnectionString = "User ID=<userid>;Password=*******;Data Source=<data source>";
conn.Open();".

生成的异常是:

See the end of this message for details on invoking 
just-in-time (JIT) debugging instead of this dialog box.
************** Exception Text **************
System.TypeInitializationException: The type initializer for 'Oracle.DataAccess.Client.OracleConnection' threw an exception. ---> Oracle.DataAccess.Client.OracleException: 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()
at WindowsFormsApplication1.frmVoiceFileMover2.cmdGetId_Click(Object sender, EventArgs e)
at System.Windows.Forms.Control.OnClick(EventArgs e)
at System.Windows.Forms.Button.OnClick(EventArgs e)
at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ButtonBase.WndProc(Message& m)
at System.Windows.Forms.Button.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

************** Loaded Assemblies **************
mscorlib
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.269 (RTMGDR.030319-2600)
CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
----------------------------------------
VoiceFileMover2
Assembly Version: 1.0.0.0
Win32 Version: 1.0.0.0
CodeBase: file:///C:/Program%20Files/State%20of%20Maine/VFM2Setup/VoiceFileMover2.exe
----------------------------------------
System.Windows.Forms
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.278 built by: RTMGDR
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System.Drawing
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.282 built by: RTMGDR
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
System
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.269 built by: RTMGDR
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
Oracle.DataAccess
Assembly Version: 2.111.6.20
Win32 Version: 2.111.6.20
CodeBase: file:///C:/Program%20Files/State%20of%20Maine/VFM2Setup/Oracle.DataAccess.DLL
----------------------------------------
System.Data
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.237 (RTMGDR.030319-2300)
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_32/System.Data/v4.0_4.0.0.0__b77a5c561934e089/System.Data.dll
----------------------------------------
System.Core
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.233 built by: RTMGDR
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
----------------------------------------
System.Transactions
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.1 (RTMRel.030319-0100)
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_32/System.Transactions/v4.0_4.0.0.0__b77a5c561934e089/System.Transactions.dll
----------------------------------------
System.Configuration
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.1 (RTMRel.030319-0100)
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Xml
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.233 built by: RTMGDR
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------

我在开发机器上安装了 2 个 oracle 客户端 10.2 和 11.2。我从 11.2 客户端将 oracle.dataaccess.dll 引用到我的项目,然后当它不起作用时,我下载了最新版本的 odp.net 并再次引用。当我仍然看到这个异常时,我尝试使用 odp。 net 也适用于 10g,但我在 10g 中找不到 oracle.dataaccess.dll。这个问题是因为 GAC 吗?

我还尝试根据此链接“http://www.youtube.com/watch?v=I1q50HnUh_w”使用 ODP.net 托管驱动程序测试版。

我必须在每台机器上安装 oracle 客户端吗?我不能在项目中打包所需的 dll 并使其运行吗?如果即时 oracle slient 使其工作,我如何继续使用即时客户端。我目前唯一的希望是找到 10g odp.net 中是否有文件 oracle.dataaccess.dll 以便它与服务器中的 oracle 版本相匹配,以使其工作。如果不是,我如何使用 oracle 即时客户端?非常感谢任何帮助。

最佳答案

如果不在每台客户端计算机上安装 Oracle Instant Client,我不相信您可以实现您想要的效果,至少如果您以推荐的方式使用 ODP.net 的话。您在您关注的问题中提到的链接是 hack,虽然它可能有效,但它不是 Oracle 推荐的使用方式。然而,话虽如此,如果你能让它发挥作用,那可能是你最好的短期方案。虽然我很害怕,但我帮不了你太多。

据我所知,.NET3.5 的所有 ODP.net 版本都是非托管的,需要安装 Oracle Instant Client 才能工作。

据我所知,使用该非托管提供程序并使其在不安装客户端的情况下仍能正常工作的唯一方法是制作一个分层应用程序,其中您的 DAL 驻留在服务器上而不是客户端上,从而使您可以控制安装 Oracle Instant Client 仅在服务器上。

注意:最近发布了一个托管的 ODP.net 提供程序,但据我所知,它只能与 .NET 4.5 一起使用(可能是 4,但绝对不能与 .NET 3.5 一起使用)

关于.net - 需要在 "oracle-less"机器上部署 .net 应用程序(从服务器查询 oracle 数据库)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13017436/

41 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com