How to Connect to the MySQL Database?
You can use the following connection string to connect to MYSQL database.
MySQL Connection String :
ConnectionString=Driver={SQLServer};Server=your_local_host; &_Database=your_database_name;Uid=your_username;Pwd=your_password;
Make sure to replace the "local host, database name, username and password" with the actual information.