MySQL .Net Provider 5.2 未显示在 VS 2008 Express 的数据源对话框中
我已经安装了 MySQL .NET 数据提供程序 5.2(通过其安装程序),但我在数据库资源管理器的数据源对话框中看不到 MySQL 数据提供程序。
我使用的是 VS 2008 Express 版本。 你有什么线索吗?
问候, 贾坦
I have installed MySQL .NET data provider 5.2 (through it's installer) but I could not see the MySQL data provider in Data Source dialog of Database Explorer.
I am using VS 2008 Express edition. Do you have any clues ?
Regards,
Jatan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
VS 2008 Express(以及 VS 2005 Express)不允许您通过数据源对话框使用 MySQL .Net Provider。 非 Express 版本允许您执行相同的操作。
要在 VS Express 中使用 MySQL,您必须从安装提供程序的位置(最有可能是 C:\Program Files\MySQL\MySQL Connector Net xxx)包含对 MySQL DLL 的引用。 或者将 DLL 从同一位置复制到项目的 Bin 文件夹中。
VS 2008 Express (and VS 2005 Express too) doesn't allow you to use MySQL .Net Provider through the Data Source Dialog. The non-Express edition allow you to do the same.
To use MySQL in VS Express, you will have to include a reference to the MySQL DLLs from the location where you installed the Provider (most probably C:\Program Files\MySQL\MySQL Connector Net x.x.x). Or copy the DLLs from the same location to the Bin folder of your project.
我认为您不能以这种方式在 .NET 中使用 MySQL,它是 MySQL 的本机 .NET 库,因此您必须按代码方式进行操作。
I do not think you can use MySQL in .NET that way, it is meant as a native .NET library for MySQL, so you will have to do things code-wise.