Index :: MySql Connector and Mono
[Article No. 19 @ 2007-10-31]
In order to use the MySQL Connector in Mono and all the applications developed with
the Mono framework you have to make the following actions:
- Download the Binaries version of the .NET/Connector from here
- Unzip the file and copy the MySql.Data.dll file located in the bin folder in your app folder
- Register the dll in the GAC using the following:
gacutil -i MySql.Data.dll
now you have the connector in your GAC
- Add MySql connector reference to your project
- Enjoy!
Available commets