MySQL 的 System.Data.SqlClient 命名空间?
该异常表示存在与网络相关的问题,或者 SQL Server 不允许远程访问,但这些都不是真的。
难道我正在尝试连接 MySQL 服务器,而不是 MS SQL?
谢谢
The exception says that there is a network related problem, or that the SQL server does not allow remote access, none of those are true.
Can it be that I'm trying to connect a MySQL server, and not MS SQL?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是因为 System.Data.SqlClient 命名空间是为 Microsoft SQL Server 设计的,要连接到 MySQL,您需要下载并引用 MySQL .NET Connector http://dev.mysql.com/downloads/connector/net/。然后,您将使用 System.Data.MySqlClient 命名空间。希望这有帮助。
It is because the System.Data.SqlClient namespace is designed for Microsoft SQL Server, to connect to MySQL you will need to download and reference the MySQL .NET Connector http://dev.mysql.com/downloads/connector/net/. You will then use the System.Data.MySqlClient namespace. Hope this helps.