コード:
using (var connection = new MySqlConnection(connectionString))
using (var command = connection.CreateCommand())
{
command.CommandText = "SELECT * from question WHERE question_id='10'" ;
connection.Open();
using (var reader = command.ExecuteReader())
{
while (reader.Read()) ;
label1.Text = reader["question"].ToString();
radioButton1.Text = reader["option1"].ToString();
radioButton2.Text = reader["option2"].ToString();
radioButton3.Text = reader["option3"].ToString();
radioButton4.Text = reader["option4"].ToString();
}
}
これらのラジオボタンから正しい答えを確認したいのですが、質問のセットごとに正しい答えの値を保持する列がデータベースにあり、どのように取得できますか。これらの言語は初めてです。