我想從數據庫添加項目到Windows窗體組合框,下面的代碼正在爲我工作。代碼中引用的表格有2列,CourseId和CourseName,我想將顯示成員設置爲CourseName,並將值成員設置爲CourseId。使用SQLDataReader將項目從數據庫添加到組合框
請告訴我在下面的代碼中需要做什麼額外的更改才能實現?
private void LoadCourse()
{
SqlConnection conn = new SqlConnection(sasdbConnectionString);
SqlCommand cmd = new SqlCommand("SELECT CourseId FROM Courses", conn);
cmd.CommandType = CommandType.Text;
conn.Open();
SqlDataReader dr = cmd.ExecuteReader();
while (dr.Read())
{
this.courseComboBox.Items.Add(dr.GetInt32(0));
}
dr.Close();
conn.Close();
}
感謝哥們,它的工作! –