我将在这里使用 c# .net 2.0 制作一个 smaill 应用程序我必须连接 Mysql 服务器我正在尝试很多教程但失败了
我在用
string constr = "Server=11.22.33.123;Port=3306;Database=bfcerin_ad;" +
"Uid=<user id here>;Pwd=<password here>;pooling=false;";
MySqlConnection con = new MySqlConnection(constr);
con.Open();
我已经尝试了两次,我的用户名和密码都很好,但服务器拒绝访问
我可以使用此代码连接到 localhost mysql,但不能连接到远程 mysql 服务器