gpt4 book ai didi

c# - 无法连接到 SQL Server,但 Excel 和 ODBC 配置可以

转载 作者:太空宇宙 更新时间:2023-11-03 20:06:28 24 4
gpt4 key购买 nike

我有一个连接到 SQL Server 的 C# 程序。它在 SQL Server 2012 的测试计算机上运行良好,但在 2008 的生产环境中不起作用。在生产环境中,它报告异常,

Unhandled Exception: System.Data.SqlClient.SqlException: A network-related or in stance-specific error occurred while establishing a connection to SQL Server. Th e server was not found or was not accessible. Verify that the instance name is c orrect and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) -- -> System.ComponentModel.Win32Exception: Access is denied

这是我的连接代码,

connStrSql = "Server=" + sqlserver + "; Database=" + sqldb + "; Trusted_Connection=True";
SqlConnection sqlConn = new SqlConnection(connStrSql)
sqlConn.Open();

目标平台是x86,目标框架是4.5。有趣的是,Excel 和 ODBC 配置可以毫无怨言地连接到数据库。 C# 程序是否使用不同的方式连接到 SQL Server?我该如何解决这个问题?

最佳答案

无法连接到 SQL Server 数据库的可能原因有很多。 This是一个很好的故障排除指南,可以帮助您解决上述错误。

简要说明:

  1. SQL Server 服务是否正在运行?
  2. 是否配置了 SQL Server TCP/IP 设置?
  3. 防火墙设置是否允许 SQL Server 通过?
  4. SQL Server 本身是否配置为允许远程连接?

其他需要考虑的事情

  1. sqlserver 的值是否正确?
  2. 是否已启用用于连接到 SQL Server 的客户端协议(protocol),例如 Named Pipes

关于c# - 无法连接到 SQL Server,但 Excel 和 ODBC 配置可以,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23163978/

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