日期:2014-05-19  浏览次数:20881 次

为什么在dataGridView中更新的内容保存不上呢,高人给指点指点吧(在线等)
用datagridview绑定的数据表,想在表格中直接改数据,按书上例子做了,可是为什么总是保存不上呢。。。。。大家帮忙给看看吧。。。。
页面初始化:      
  private   void   Form2_Load(object   sender,   EventArgs   e)
                {
                        string   sConn   =   "Data   Source=AMINTA-EDF69EE4\\SQLEXPRESS;Initial   Catalog=testa;Integrated   Security=True;User   ID=wx;Password=12345678 ";
                        string   sql   =   "select   *   from   tablea ";
                        sqlConnection1   =   new   SqlConnection(sConn);
                        sqlCommand1   =   new   SqlCommand(sql,   sqlConnection1);
                        sqlCommand1.CommandText   =   "select   aid   from   tablea   order   by   aid ";
                        sqlDataAdapter1   =   new   SqlDataAdapter(sql,   sqlConnection1);
                        DataSet   dataSet1   =   new   DataSet();
                        sqlDataAdapter1.Fill(dataSet1,   "tablea ");
                        dataGridView1.DataSource   =   dataSet1.Tables[ "tablea "];
}
保存按扭:
    private   void   button1_Click(object   sender,   EventArgs   e)
                {
                        DataSet   dataset1   =   new   DataSet();
                        try
                        {
                                this.dataGridView1.CurrentCell   =   this.dataGridView1[2,   2];
                                this.dataGridView1.BeginEdit(true);
                                DataSet   changes   =   (DataSet)dataset1.GetChanges();
                                if   (changes   ==   null)                                           //---总是运行到这里就报错了,好像changes的值一直都没有一样....是怎么回事啊........
                                {
                                        return;
                                }