このコードを使用してください:
string myConnectionString = "server=localhost;database=testDB;uid=root;pwd=abc123;";
private void button1_Click(object sender, EventArgs e)
{
MySqlConnection cnn = new MySqlConnection(myConnectionString);
try
{
cnn.Open();
MessageBox.Show ("Connection Open!");
cnn.Close();
}
catch (Exception ex)
{
MessageBox.Show("Cannot open connection!");
}
}
コードに適切な参照があることを確認してください:
using MySql.Data.MySqlClient;
そして、この接続文字列は単なる例です。接続文字列ofcを確認する必要があります。また、StackOverflowには類似した、または同じ質問がたくさんあると確信しているので、この種の質問も検索してください。