gpt4 book ai didi

c# - 使用 C# 的 SqlConnection 错误 vs2015

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

我使用 VS 2012 和 SQL Server 2012。当我切换到 VS 2015 和 SQL Server 2014 时,我的 SqlConnection 无法正常工作并导致无法找到服务器的错误。

我的代码:

SqlConnection cn = new SqlConnection(@"Data Source=(local); Initial Catalog=jood; Integrated Security=true;MultipleActiveResultSets=true");

public Form1()
{
cn.Open();
cn.Close();
InitializeComponent();
}

错误

An unhandled exception of type 'System.Data.SqlClient.SqlException' occurred in System.Data.dll
Additional information: 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: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)

最佳答案

如果您计划在方法之外声明 SqlConnection 属性,则需要设置访问限定符(公共(public)、私有(private)等)。也尝试使用 localdb 而不是 local。在进行连接之前进行初始化。

如果这仍然不起作用,请检查您的 Sql 配置设置并确保您可以使用 Windows 凭据访问数据库,而不仅仅是像 sa/sa 这样的 sql 登录

public SqlConnection cn = new SqlConnection(@"data source=(localdb);initial catalog=jood;Integrated Security=true;MultipleActiveResultSets=true");

public Form1()
{
InitializeComponent();

cn.Open();
cn.Close();
}

刚刚在 VS2015 和 SQL Server 2014 上试过了 - 工作正常。

编辑:如果可以,请尝试明确告诉它您的服务器名称,而不是使用 localdb。

关于c# - 使用 C# 的 SqlConnection 错误 vs2015,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47670726/

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