从 Windows .NET 服务器 ADO.NET 连接到运行 MySQL 的 Linux 服务器?
我可以连接到使用 ADO.NET 运行 MySQL 的 Ubuntu 服务器吗?还是需要特殊的驱动程序?
Can I connect to a Ubuntu server, that is running MySQL using ADO.NET or do I need a special driver?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要 MySQL Connector/NET ADO.NET 驱动程序。
安装后,它的行为几乎与 Microsoft 的本机
System.Data.SqlClient
相同。无需导入该命名空间,而是使用 MySQL 的:基本上,只需在要使用任何 MS
SqlClient
类的位置添加My
即可。You'll need the MySQL Connector/NET ADO.NET driver.
Once installed, it behaves almost identically to Microsoft's native
System.Data.SqlClient
. Instead of importing that namespace, use MySQL's:Basically, just prepend
My
where you'd use any of the MSSqlClient
classes.您使用 Connector/NET。
You use Connector/NET.