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

时间:2012-10-22 18:25:57

标签: .net oracle odp.net

我是一名初级.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。还有其他方法可以解决这个问题吗?

我的connectiopn字符串是:

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即时客户端?任何帮助都非常感谢。

1 个答案:

答案 0 :(得分:2)

我不相信你可以实现你想要的,而不是在你的每台客户机器上安装Oracle Instant Client,至少不是你推荐的方式使用ODP.net。您在问题中提到的您所关注的链接是黑客攻击,虽然它可能有效,但它不是Oracle推荐的使用方式。但是,话虽如此,如果你可以使它工作,这可能是你最好的短期情况。虽然我很害怕,但我对你的帮助不大。

据我所知,.NET3.5的所有ODP.net版本都是不受管理的,需要安装Oracle Instant Client才能使用它们。

我知道使用该非托管提供程序并且仍然可以在没有客户端安装的情况下工作的唯一方法是创建一个分层应用程序,其中DAL驻留在服务器上而不是客户端上,从而使您可以控制安装{ {1}}仅在服务器上。

注意:最近发布了一个托管的ODP.net提供程序,但AFAIK只能用于.NET 4.5(可能只有4个但绝对不能用于.NET 3.5)