使用 OleDbConnection 查找连接到 MySQL Server 5.1.50 的连接字符串

发布于 2024-11-05 18:47:38 字数 407 浏览 6 评论 0原文

我感兴趣的是如何找到连接字符串以便能够使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ι不睡觉的鱼゛ 2024-11-12 18:47:38

您不使用 MySQL .NET 连接器有什么原因吗?无论如何,我认为你需要添加
Provider=MySQL Provider; 添加到您的连接字符串。

尝试将此作为您的连接字符串:

Provider=MySQL Provider;server=localhost;User Id=MyID;password=MyPassword;database=MyDatabase; 

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:

Provider=MySQL Provider;server=localhost;User Id=MyID;password=MyPassword;database=MyDatabase; 

The MySQL.NET connector fully implements the ADO.NET interface. Every command is identical to using the System.Data.SqlClient namespace.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文