SQL Connection String Error: Unable to connect to any of the specified MySQL hosts

SQL Connection String Error: Unable to connect to any of the specified MySQL hosts

在过去的 4 个小时里,我一直在尝试让我的程序连接到我的数据库,但我无法让它工作。我正在编写一个 WPF 桌面应用程序,它需要连接到数据库以保存用户创建的内容。我创建了数据库并可以在 SQL Management Studio 中查看它,但我无法让我的连接字符串工作。

我查看了与此相关的所有其他问题,但找不到解决方案。当我逐步执行我的代码时,当与数据库的连接尝试打开时发生异常。

异常:Unable to connect to any of the specified MySQL hosts.

这是我的代码:

string connectionString = "Data Source=./SQLExpress;Initial Catalog=PrinterEmulator;Integrated Security=True;";

MySqlConnection conn;

try
{
    using (conn = new MySqlConnection())
    {
        conn.ConnectionString = connectionString;
        conn.Open();  //Exception occurs here

        MySqlCommand cmd = new MySqlCommand("INSERT INTO [PrinterEmulator].[dbo].[LEDM](NamesOfTablesHere) VALUES(ValuesToBeInsertedHere)", conn);

        cmd.ExecuteNonQuery();
    }
}
catch (MySqlException ex)
{
    MessageBox.Show(ex.ToString());
}

我也在用SQLExpress。

在过去的几个小时里,这一直困扰着我,非常感谢任何帮助,谢谢!

您正在使用 SqlServer 作为数据库,但是您正在使用用于与 MySQL[=16 交互的 类 =] ,你应该使用 SqlConnectionSqlCommand 用于 SqlServer