关于数据库添加记录后更新表问题
各位版主好呀,又是我,由于最近在做课程设计所以问题比较多啊,我又做了添加记录的功能,以下是我的添加记录的代码:string sqlins = "insert into ygb(xm,birthday,sex,mm,sf) values ('" + textBox1.Text +"', '" + textBox3.Text + "','" + textBox2.Text + "','" + textBox5.Text +"','" + textBox6.Text +"')";
SqlConnection con = new SqlConnection("server=.;database=db_ssxt;uid=sa;pwd=230415;");
con.Open();
SqlCommand com = new SqlCommand(sqlins,con);
try
{
com.ExecuteNonQuery();
}
catch (SqlException se)
{
MessageBox.Show(se.Message);
}
finally
{
con.Close();
}
在文本框打入信息后可在在SQL2005中看到已经新添了这条记录,但我在GRIDVIEW绑定的表中要关掉下程序才能看到新添的记录,怎么才能使我按下按钮后就在我绑定的表中显示我新添的内容呢