Unable to connect to any of the specified MySQL hosts

               

c#连接Mysql数据建立连接时提示:Unable to connect to any of the specified MySQL hosts.

Unable to connect to any of the specified MySQL hosts_第1张图片

出现此错误的原因是Server(数据库服务器IP地址填写错误)

当Server配置值是“(local)”或者是"(localhost)"时都会产生此错误,连接MSSQL时使用“(local)”是可以的,但连接MySQL是不行的,正确的方法是不使用小括号,例如下面的 app.config 文件中的配置:

xml version="1.0" encoding="utf-8" ?><configuration> <connectionStrings>  <add name="Default" connectionString="server=localhost;uid=root;pwd=root;database=DreacomSpider" providerName="mysql" />     connectionStrings>configuration>


           

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow

你可能感兴趣的:(Unable to connect to any of the specified MySQL hosts)