使用C#通过SSH隧道访问mysql数据

时间:2015-09-17 11:17:42

标签: c# mysql visual-studio ssh sqlyog

我在云端有MySQL数据库,可以使用SSH隧道访问。但是我使用c#连接到数据库。我也为visual studio安装了SQL连接器。

以下是我遵循的步骤。

  1. 为SSH客户端安装SQLYog
  2. 尝试通过SQLYog进行连接。的 connection successful 即可。
  3. 尝试从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.

0 个答案:

没有答案