我收到提示:连接带MySQL.NET连接器
当我与MySQL .NET接口连接Could not establish a connection to database
。我完全确信用户名是正确的,密码是正确的,数据库是正确的,服务器是正确的。下面的代码:
mysqlCon.ConnectionString = "Server=(servername);Username=(username);Pwd=(rightpassword);
Database=(rightdatabase)";
try
{
mysqlCon.Open();
}
catch (Exception ex)
{
MessageBox.Show("Could not establish a connection to database!");
}
它migh TBE有用的打印ex.Message不是忽略它。如果您没有使用捕获的异常,请不要指定名称(例如,使用_catch(Exception)_ – NKCSS 2011-04-09 14:33:40