views:

15

answers:

2

Hi, i bought a web domain with some web space. They support only mySQL DB, how do i access the my SQL DB on my asp.net application? is there is way to access it through .net base classes without installing third party drivers?

+1  A: 

The standard Conector/Net should work. It's pure C# and communicates with MySQL over sockets. If that isnt supported you should talk to your host about how to get it working.

Matthew Flaschen
+1  A: 

You can reference MySQL .net connector .dll which will be placed in your bin folder.

Tomi