我正在尝试连接到我的本地数据库以获取我的Xamarin应用。但我收到错误:Unable to connect to anny of the specified MySQL hosts
。数据库名称密码和用户都很好。
以下是我正在使用的代码:
private void LoginKnop_Click(object sender, System.EventArgs e)
{
MySqlConnection con = new MySqlConnection("datasource=127.0.0.1;port=3306;username=root;password=JariR0800;database=test;");
try
{
if (con.State == ConnectionState.Closed)
{
con.Open();
loginLog.Text = "Database geconnect";
}
}
catch(MySqlException ex)
{
loginLog.Text = ex.ToString();
}
finally
{
con.Close();
}
}
}
谢谢你的时间!