求大神帮我看看代码哪里出错了!
private void btnAlter_Click(object sender, EventArgs e){
connection.Open();
string updatasql = string.Format("update student set 姓名={0},性别={1},出生日期={2},出生地={3},民族={4},毕业学校={5} where 学号={6}", textBox1.Text, textBox2.Text, textBox3.Text, textBox4.Text, textBox5.Text, textBox6.Text, name);
string selectsql = string.Format("select 姓名,性别,出生日期,出生地,民族,毕业学校 from student where 学号='{0}'", name);
SqlCommand command = new SqlCommand(updatasql, connection);
MessageBox.Show("修改成功");
adapter = new SqlDataAdapter(selectsql, connection);
dataset =new DataSet();
adapter.Fill(dataset);
dataGridViewShow.DataSource = dataset.Tables[0];
connection.Close();
}
这是一个修改代码,为什么按下去没有显示修改的结果