gpt4 book ai didi

c# - 本地数据库: “A network-related or instance-specific error occurred while establishing a connection to SQL Server.”

转载 作者:行者123 更新时间:2023-12-02 04:04:40 25 4
gpt4 key购买 nike

我已经检查了有关此事的其他主题并尝试了一些标准解决方案,但似乎没有任何效果。我的数据库是本地的,我正在尝试连接,它已经创建并保存在名为 localDB.mdf 的文件夹 Helpers 中 我的代码是:

public static List<ChatMessages> GetFromDatabase(string query)
{
List<ChatMessages> ImportedFiles = new List<ChatMessages>();
string sql = @"Data Source=|DataDirectory|\Helpers\localDB;AttachDbFilename=\Helpers\localDB.mdf;Integrated Security=True";
SqlConnection connection = new SqlConnection(sql);
try
{
connection.Open();
var check = connection.State;
SqlCommand cmd = new SqlCommand(query, connection);
var rdr = cmd.ExecuteReader();
while (rdr.Read())
{
//stuff
}
connection.Close();
}
catch (Exception e) { MessageBox.Show("error: " + e); }
var x = ImportedFiles;
return ImportedFiles;
}

感谢您的宝贵时间,最好的问候

最佳答案

已经找到答案了。在尝试了很多像@Win建议的假设之后,我找到了答案。所以:

项目 > 添加新数据源 > 选择本地数据库建议的连接字符串是:

@"Data Source = (LocalDB)\MSSQLLocalDB; AttachDbFilename=|DataDirectory|\localDB.mdf; Integrated Security = True"

区别在于 MSSQLLocalDB 和环境变量的使用。

关于c# - 本地数据库: “A network-related or instance-specific error occurred while establishing a connection to SQL Server.” ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40088384/

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