this._dataset = new DataSet();
this._sdap.Fill(this._dataset, "学生表");
this._sdap.FillSchema(this._dataset.Tables[0], SchemaType.Mapped);
this._dr = this._dataset.Tables[0].Rows.Find(this._intid);
this._dr["姓名"] = txt姓名.Text.Trim();
this._dr["年龄"] = int.Parse(txt年龄.Text.Trim());
this._dr["班级"] = int.Parse(cbb班级.SelectedValue.ToString());
this._dataset.Tables["学生表"].Rows.Remove(this._dr);
return this._sdap.Update(this._dataset, "学生表") > 0 ? true : false;
为什么dataset中的信息删除掉了 却在更新数据库的时候出错了 ?为什么? 哪位高手指点下!!
墨色风雨
鸿蒙传说