我正在制作一个C#WPF应用程序以连接到Web服务器数据库。但是,它给了我“无法连接到任何指定的MySql主机”异常。它适用于本地主机,但不适用于实际的服务器。现在,我只是想测试连接,但无法正常工作。
string connectionString = "Server=195.201.171.163;UserID=******;Password=*****;";
private void Window_Loaded(object sender, RoutedEventArgs e)
{
using (MySqlConnection conn = new MySqlConnection(connectionString))
{
try
{
conn.Open(); // Gives exception here
MessageBox.Show("Success");
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
}