-2
我有一個新學生的註冊表單,我需要有一個datagridview,上面有一個文本框和一個datagridview上方的按鈕,用於通過studentID來搜索學生。我試過這個代碼,但它沒有工作帶數據庫的C#搜索表單
private void txtsearch_Click(object sender, EventArgs e)
{
SqlConnection conn = new SqlConnection();
DataTable dt = new DataTable();
SqlDataAdapter SDA = new SqlDataAdapter();
SDA.Fill(dt);
dataGridView1.DataSource = dt;
}
什麼不工作? – dbugger
您還沒有提供連接字符串或SQL ...重新讀取一些示例並將它們跟在信件上。 –
正是這樣說的:在調用'Fill'之前,SelectCommand屬性還沒有被初始化。 @dbugger –