使用 OleDbConnection 查找连接到 MySQL Server 5.1.50 的连接字符串
我感兴趣的是如何找到连接字符串以便能够使用 OleDbConnection(C#) 连接到 MySQL Server 5.1.50。
我使用了这个自动生成的字符串(在 Visual Studio 中添加新数据源后):
server=localhost;User Id=MyID;password=MyPassword;database=MyDatabase
但我总是收到相同的错误消息:
An OLE DB Provider was not specified in the ConnectionString. An example would be, 'Provider=SQLOLEDB;'.
我尝试了不同的提供程序,但它们似乎都不起作用。
I am interested how can I find the connection string in order to be able to connect to MySQL Server 5.1.50 using OleDbConnection(C#).
I used this auto generated string (after adding new data source in Visual Studio):
server=localhost;User Id=MyID;password=MyPassword;database=MyDatabase
but I always get the same error message:
An OLE DB Provider was not specified in the ConnectionString. An example would be, 'Provider=SQLOLEDB;'.
I have tried different providers but neither of them seems to work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不使用 MySQL .NET 连接器有什么原因吗?无论如何,我认为你需要添加
Provider=MySQL Provider;
添加到您的连接字符串。尝试将此作为您的连接字符串:
MySQL.NET 连接器完全实现了 ADO.NET 接口。每个命令都与使用 System.Data.SqlClient 命名空间相同。
Is there a reason you aren't using the MySQL .NET connector? Anyways, I think you need to add
Provider=MySQL Provider;
to your connection string.try this as your connection string:
The MySQL.NET connector fully implements the ADO.NET interface. Every command is identical to using the
System.Data.SqlClient
namespace.