主题:数据无法更新到数据库中
我的数据集是自动生成的:
this.bookManageDataSet.CurrenBookLib[index].BookDebit = debitName;
this.currenBookLibTableAdapter1.Update(this.bookManageDataSet.CurrenBookLib);//这行出错了,提示说违反了并发性
this.bookManageDataSet.AcceptChanges();
就是不知道怎样能将更改后的数据更新到数据库中?
this.bookManageDataSet.CurrenBookLib[index].BookDebit = debitName;
this.currenBookLibTableAdapter1.Update(this.bookManageDataSet.CurrenBookLib);//这行出错了,提示说违反了并发性
this.bookManageDataSet.AcceptChanges();
就是不知道怎样能将更改后的数据更新到数据库中?