In which case, go back and read jmcilhinney's post, #36. It tells you exactly what you need to do.

Download MySql Connector for .Net.
Reference the assembly in your project.
Update the Imports statements at the top of your code file.
Change all SqlConnection to MySqlConnection, all SqlCommand to MySqlCommand etc.
Update your code to use Parameters.

Gary