The standard way to connect to a mySQL database using the mySQL connector in Microsoft.NET is as follows:
Server=myServerAddress;Database=myDataBase;Uid=myUsername;Pwd=myPassword;
Note: the default port is 3306
The mySQL connector is a .NET Framework Class library located in the MySql.Data.MySqlClient.MySqlConnection namespace.