gpt4 book ai didi

c# - 无法在 Visual Studio 中连接到 SQL Server

转载 作者:行者123 更新时间:2023-11-30 19:39:14 26 4
gpt4 key购买 nike

我安装了 SQL Server 和 Visual Studio 并尝试完成我的大学项目。

我可以在 Management Studio 中连接到 SQL Server,但无法在 Visual Studio 中连接!

  • 已启用远程连接
  • 所有服务都在运行
  • 一切正常,但我不知道为什么会出现此错误:

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 the ...

这段代码有什么问题?

 SqlConnection sqcon = new SqlConnection("Data Source=.;Initial Catalog=Badan_Sazi;Integrated Security=True");

SqlCommand com = new SqlCommand();
com.Connection = sqcon;
com.CommandText = "SELECT tbl_morabi.family as 'lname' FROM tbl_morabi";

com.Connection.Open();

我也试过., localhost, 我的电脑名 ...同样的错误

  • Visual Studio 2012
  • SQL Server Express 2012

最佳答案

SQL Server Express 默认为 SQLEXPRESS 实例名

因此请尝试使用 .\SQLEXPRESS(local)\SQLEXPRESS 作为您的服务器+实例名称。

如果这不起作用:您在 Management Studio 中使用什么服务器名称 连接到您的 SQL Server 实例?使用那个名字!

关于c# - 无法在 Visual Studio 中连接到 SQL Server,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28602499/

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