I'm trying to make my mysql connection string read from textbox instaid of direct string what i was trying to do is this
string myConnection = "datasource='" + this.label12 + "';username='" + this.textBox3 + "';password='" + this.textBox4 + "';SSL Mode=Required;Certificate Store Location=CurrentUser;";
And i get the error cannot connect to any mysql server
Coded in c#