在 Visual Studio Ultimate 2010 中添加 MySQL.Data 作为参考
我正在创建一个新的 C# 项目。我想将它与MySQL服务器连接。当我单击“添加引用”时,不显示 MySQL.Data。这会导致各种各样的问题,因为我无法将它与我的数据库连接。
我正在使用 Visual Studio Ultimate 2010 和 MySQL 5.5。
请帮忙。
谢谢
I'm creating a new C# project. I want to connect it with the MySQL server. When I click Add Reference, MySQL.Data is not shown. This leads to all sort of problems because I can't connect it with my database.
I'm using Visual Studio Ultimate 2010 and MySQL 5.5.
Please help.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
MySQL 在 .NET 中不能“开箱即用”。
您需要下载类库,然后在解压后添加对类库的引用zip 文件。在“添加引用”对话框中,转到“浏览”选项卡(如果我没记错的话),这样就可以找到类库。
MySQL isn't available "out of the box" in .NET.
You need to download the class library, and then add a reference to the class library once you've unpacked the zip file. In the "Add Reference" dialog box, go to the "Browse" tab (if I remember correctly) so that you can find the class library.
MySql.Data dll 存储在:
代码:
C:\Program Files\MySQL\MySQL Connector Net \Assemblies
在引用窗口中,选择直接浏览到程序集的选项。
The MySql.Data dll is stored in:
Code:
C:\Program Files\MySQL\MySQL Connector Net \Assemblies
In the references window, choose the option to browse to the assembly directly.
如果您使用 VS 2010 安装 MySQL for Visual Studio 我在这里找到了它:
添加参考>浏览>
C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies\MySql.Data.dll
If you install MySQL for Visual Studio with VS 2010 I found it here:
Add Reference > Browse >
C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies\MySql.Data.dll
您需要下载适用于 dotnet 的 MySql Connector。下载后,只需安装即可。
然后转到您的项目:
我。右键单击项目并选择添加 ->参考
浏览并找到 MySql.Data 并选择它进行添加。
现在添加参考,只需在程序文件顶部包含以下语句
使用 MySql.Data.MySqlClient
然后就可以开始了
You need to download the MySql Connector for dotnet. Once you have downloaded it, just install it.
Then go to your project:
i. Right click on the project and choose add -> Reference
browse for the MySql.Data and select it to add.
Reference is added now just include the following statement on top of your program file
using MySql.Data.MySqlClient
You are then good to go
首先在Windows 10中安装MySQL Installer 8.0.35,然后转到文件夹“C:\Program Files (x86)\MySQL\MySQL Connector NET 8.2.0”并将DLL文件(MySql.Data.dll)复制到“我的 Visual C++ 应用程序的“bin”文件夹,它对我有用,希望它对某人有所帮助。
first installed the MySQL Installer 8.0.35 in windows 10 and the went to the folder "C:\Program Files (x86)\MySQL\MySQL Connector NET 8.2.0" and copied the DLL file(MySql.Data.dll) to "bin" folder of my visual C++ application and it worked for me , hope it helps some one.