我在云端有MySQL数据库,可以使用SSH隧道访问。但是我使用c#连接到数据库。我也为visual studio安装了SQL连接器。
以下是我遵循的步骤。
SQLYog
。 SQLYog
进行连接。的 connection successful
即可。 尝试从c#连接。的 connection unsuccessful
代码:
MySqlConnection myConn;
string connStr = "server=localhost;user id=xxxxxxx;password=xxxxxxx;port=3306;persistsecurityinfo=False;";
myConn = new MySqlConnection(connStr);
myConn.Open();
例外:
Unable to connect to any of the specified MySQL host.