Accessing mySql from C#

  • Thread starter Thread starter Muscha
  • Start date Start date
M

Muscha

Hi,

What is the best way to access mySql from C#? Anyone has a good suggestion
about for a good data provider?

Thanks,

/m
 
You can try to google some free (or comercial) version of
data provider for MySql.

Also, you can create ODBC bridge to MySql database and
then use odbc data provider.

I hope this help.

Jan.
 
Hello,
You don't have to install new drivers. You can use the built-in
Microsoft.Jet.OLEDB.4.0 provider for that....It works fine with MySql.

Regards,
Rami
 
Back
Top