this.smartClientDataSet.User.Rows[userDataGrid.CurrentRowIndex][1] = "111";
this.userTableAdapter.Update(this.smartClientDataSet.User);
this.smartClientDataSet.AcceptChanges();说明:    smartClientDataSet,userTableAdapter都是通过vs生成的数据源以及数据适配器。
执行语句就报错: "Update requires a valid UpdateCommand when passed DataRow collection with modified rows"
请高手指点。