Poe Fernando

Poe Fernando

  • NA
  • 8
  • 405

Cannot test connection to mysql

Jun 6 2019 11:08 PM
Error message: "Unable to connect to any specified MySQL hosts" when i click on btn_Test. Im definitely entering a valid serverName and DatabaseName.
  1. public partial class MainForm : Form  
  2. {  
  3.      
  4.    public static string serverName;  
  5.    public static string database;  
  6.      
  7.    public MainForm()  
  8.    {     
  9.          InitializeComponent();  
  10.    }  
  11.      
  12.    MySqlConnection connection = new MySqlConnection("server=" + serverName + ";    Database=" + database + "; username=username; password=password");  
  13.      
  14.    public void btnTest_Click(object sender, EventArgs e)  
  15.    {  
  16.          serverName = txtServer.Text;  
  17.          database = txtDatabase.Text;  
  18.      
  19.    try  
  20.    {  
  21.          connection.Open();  
  22.          MessageBox.Show("Connected!");  
  23.    }  
  24.    catch (Exception ex)  
  25.    {  
  26.          MessageBox.Show(ex.Message);  
  27.      
  28.    }  
  29. }  

Answers (1)