我正在尝试使用 C# Windows 应用程序连接一些虚拟主机,但未成功。
我使用这个 con 字符串:
Server=myServerAddress;Database=myDataBase;Uid=myUsername;Pwd=myPassword;
我确定 con 字符串中的值是可以的,因为我在 php 连接脚本中使用了这个值。
这是测试代码:
string conString = "Server=localhost;Database=********;Uid=********;Pwd=********;";
MySqlConnection con = new MySqlConnection(conString);
try
{
con.Open();
MessageBox.Show("Connected!");
}
catch (MySqlException mex)
{
MessageBox.Show(mex.Message);
con.Close();
}
我安装了 MySql 连接器,我尝试了另一个端口 3307,但没有成功。