Link to home
Start Free TrialLog in
Avatar of Eduardo Fuerte
Eduardo FuerteFlag for Brazil

asked on

What must be done to make .net framework data provider for MySQL visible to .net?

Hi experts!

After download and install .net framework data provider for MySQL what must be done to finally .net could reach it?

User generated image
Thanks in advance!
Avatar of Lokesh B R
Lokesh B R
Flag of India image

Hi,

I don't think you can see the provider here in the list.

if you want to use the MySQL provider in the .NET applicaiton, follow the below steps.

1. Create a folder in your applicaiton and add the MySql DLL to that folder.
2. Right click on the References
3. Click Add Reference
4. Browse the MySql dll from that folder and click ok.

You are ready to use the MySQL data provider in your application.


using(MySqlConnection con = new MySqlConnection())
{
  // code goes here

}

Open in new window

Avatar of Eduardo Fuerte

ASKER

But since  mysql-connector-net-5.0.9 is installed in the past I'm certain, I saw it diponibilized  in a similar way like

User generated image
Yes, exactly what I saw in the past.

But after install MySQL data provider it doesn't appear to be choosed.
What must be configurated for?
ASKER CERTIFIED SOLUTION
Avatar of Eduardo Fuerte
Eduardo Fuerte
Flag of Brazil image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Folowing this link I found what I need