31 and 34 are the same thing aren't they? After you do the guide the databaseconnection.cs the line you edited will look like
Code:
MySqlConnection C = null;
try
{
C = new MySqlConnection("Server=" + SERVER + ";Database='" + DATA_BASE + "';Username='" + USER_NAME + "';Password='" + PASSWORD + "'");
C.Open();
}