- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个连接到 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是一个很好的故障排除指南,可以帮助您解决上述错误。
简要说明:
其他需要考虑的事情
sqlserver
的值是否正确?Named Pipes
?关于c# - 无法连接到 SQL Server,但 Excel 和 ODBC 配置可以,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23163978/
我正在开发一个 voip 调用应用程序。我需要做的是在接到来电时将 Activity 带到前台。我在应用程序中使用 Twilio,并在收到推送消息时开始调用。 问题是我试图在接到任何电话时显示 Act
我是一名优秀的程序员,十分优秀!