Unable to add MySQL connection in C # application

I am trying to connect MySQL to Windows following the instructions given here .

I installed the MySQL 5.1 software, GUI tools, and the MySQL connector. MySQL is working fine.

I want to establish a connection between a MySQL database and a C # Windows application. But I can not find "MySql.Data" on the " Add Links" tab in a C # Windows application. Can someone help me solve this problem?

Please refer to the screenshot below: alt text

0
c # mysql
source share
2 answers

If you really have Connector / NET installed, it should appear on the .NET tab.

If you can't just click the Browse tab and add the assembly directly, it should be under

C: \ Program Files \ MySQL \ MySQL Connector Net 6.0.4 \ Assemblies

or somesuch.

0
source share

How about browsing in a DLL (browsing tab)?

0
source share

All Articles