3

尝试使用实体框架打开连接时,我不断收到此错误。我可以毫无问题地从数据库更新模型,但是当我在调试中运行代码时,它会出现此错误。(在 Windows 2008 虚拟机上运行)

出现错误的代码片段如下所示:

public partial class SpatialDatabase : global::System.Data.Objects.ObjectContext
{
    try
    {
        using (EntityConnection conn = new EntityConnection(this.Connection.ConnectionString))
        {
            conn.Open(); // <== fails here

            EntityCommand cmd = conn.CreateCommand();
            ...

这是与 Oracle 数据库的连接。

这段代码显然在其他地方运行正常,所以我感觉它与连接有关。我们正在使用 Oracle for .NET (ODAC) 驱动程序。我不知道它是 64 位还是 32 位,但它在更新模型时有效,但在调试中运行时无效。

(如果我知道要显示什么,我会显示额外的代码!)

来自 app.config 的连接字符串:

<connectionStrings>
  <add name="SpatialDatabaseContext" connectionString="metadata=res://*/SpatialDatabase.csdl|res://*/SpatialDatabase.ssdl|res://*/SpatialDatabase.msl;provider=Oracle.DataAccess.Client;provider connection string=&quot;DATA SOURCE=ds_name_here;PASSWORD=password_here;PERSIST SECURITY INFO=True;USER ID=user_id_here&quot;" providerName="System.Data.EntityClient" />
</connectionStrings>

[编辑]

System.Data.SqlClient.SqlException: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)

[/编辑]

[编辑2]

以上可能是一个红鲱鱼。我再次运行它并没有看到那个错误,但我确实看到了这个 InnerException:

[Oracle.DataAccess.Client.OracleException] = {"ORA-12154: TNS:could not resolve the connect identifier specified"}

[/编辑2]

[编辑 3]

我尝试改用 EFOracleProvider。它构建得很好,但是当我去生成实体模型时,我得到了这个:

Microsoft (R) EdmGen version 3.5.0.0
Copyright (C) 2008 Microsoft Corporation. All rights reserved.

error 7001: The provider did not return a ProviderManifestToken string.
Attempt to load Oracle client libraries threw BadImageFormatException. This problem will occur when running in 64 bit mode with the 32 bit Oracle client components installed.
An attempt was made to load a program with an incorrect format. (Exception from HRESULT: 0x8007000B)

Generation Complete -- 1 errors, 0 warnings

我安装了 32 位和 64 位版本的 Oracle 客户端组件。如何选择运行 32 位还是 64 位?

[/编辑3]

4

5 回答 5

1

我找到了几个链接,认为它们会对您有所帮助!因此在这里分享。

参考这篇博文,http ://th2tran.blogspot.in/2009/06/underlying-provider-failed-on-open.html 这部分我想从这篇博文中与你分享。“所以 IIS 正试图访问凭据 'NT AUTHORITY\NETWORK SERVICE' 下的数据库。我通过 SQL Server Management Studio 查看了数据库设置,果然,该帐户未列为允许连接的用户之一。所以我加了他。网络应用程序能够成功连接。”

试试这个!

如果您已经处理了它,请参考以下链接:MSSQL 错误“底层提供程序在打开时失败”

希望这可以帮助!

于 2012-07-31T16:13:43.407 回答
1

抱歉,如果以上任何内容对您没有帮助。我刚刚添加它们是因为您在 [编辑] 中添加了与 SQL Server 相关的内容

无论如何,请在 SQL Server 中检查以下内容:http ://www.sswug.org/articlesection/default.aspx?TargetID=44331

如果是 Oracle,如果有帮助,请参考以下链接。

http://ora-12154.ora-code.com/ http://blogs.msdn.com/b/dataaccesstechnologies/archive/2010/06/30/ora-12154-tns-could-not-resolve-the-在创建链接服务器到 oracle.aspx 时连接标识符指定错误

问候,

Varun Shringarpure

于 2012-07-31T23:11:11.083 回答
1

服务器未找到或无法访问。

表示您的连接字符串指向无法找到的服务器。最常见的(至少对我而言)是由于错误的 Sql Server 名称,在您的情况下可能是类似的。检查

Data Source=(local) 

连接字符串的一部分指向您可以使用其他工具/应用程序访问的连接

(例如app.config.edmx文件的应该指向同一个地方)

于 2012-08-01T08:37:47.980 回答
1

在连接字符串中,对于数据源,确保使用完整的描述符而不是 TNSNames.ora 中的条目。例如,

`"data source=(DESCRIPTION= (ADDRESS= (PROTOCOL=TCP) (HOST=**host_name**) (PORT=**1521**)) (CONNECT_DATA= (SERVER=dedicated) (SID=**db_instance**)))"`

代替

"data source=**my_tns_ds**"
于 2017-01-27T14:44:19.863 回答
0

有关信息,没有修复。

我最终放弃了我遇到问题的VM并构建了另一个(其他人构建了它!)

现在问题消失了。

于 2012-09-14T15:37:19.547 回答