gpt4 book ai didi

c# - 无法从 Visual Studio C# 连接到数据库

转载 作者:搜寻专家 更新时间:2023-10-30 20:24:29 25 4
gpt4 key购买 nike

我想从我的 C# Windows 窗体应用程序连接到数据库。我尝试使用

using(SqlConnection conn = new SqlConnection()) {
conn.ConnectionString = "Data Source=localhost; User Id=root; Password=; Initial Catalog=dbName";
conn.Open();
}

当我构建我的项目时,我收到一个错误,提示未找到或无法访问服务器

我尝试通过数据源配置向导连接,但也找不到数据库。

我使用WAMP服务器,我可以通过phpMyAdmin找到我的数据库。

最佳答案

您正在尝试连接到 Microsoft SQL Server。

using System;
using System.Data;

using MySql.Data;
using MySql.Data.MySqlClient;

public class Tutorial1
{
public static void Main()
{
string connStr = "server=localhost;user=root;database=world;port=3306;password=******;";
MySqlConnection conn = new MySqlConnection(connStr);
try
{
Console.WriteLine("Connecting to MySQL...");
conn.Open();
// Perform database operations
}
catch (Exception ex)
{
Console.WriteLine(ex.ToString());
}
conn.Close();
Console.WriteLine("Done.");
}
}

查看此链接,希望对您有所帮助

您可以安装 MySql.Data,打开包管理器控制台 工具 > NuGet 包管理器 > 包管理器控制台 然后键入 Install-Package MySql.Data -Version 6.9.9 在那里

关于c# - 无法从 Visual Studio C# 连接到数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43342354/

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