Well to read your MySql database you can use the MySQL Connector-Net
here's a short example but you should read the MySql.Data.chm file for more info
MySqlConnection conn = new MySqlConnection("server=localhost;uid=csharp;pwd=csharp;database=csharptest;charset=utf8");
conn.Open();
cmd = new MySqlCommand();
cmd.Connection = conn;
cmd.CommandText = "SELECT * FROM someTable";
MySqlDataReader reader = cmd.ExecuteReader();
while (reader.Read())
{
Debug.WriteLine(reader.GetValue(0));
}
reader.Close();
conn.Close();
Hope it will help you.......:)