DataSet.AcceptChanges 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
提交自加载此 DataSet 或上次调用 AcceptChanges() 以来对其进行的所有更改。
public:
void AcceptChanges();
public void AcceptChanges ();
member this.AcceptChanges : unit -> unit
Public Sub AcceptChanges ()
示例
以下示例将 添加到 DataRowDataTable 中的 DataSet。 然后,在 AcceptChanges 上调用 方法, DataSet该方法会级联到它包含的所有 DataTable 对象。
private void AcceptChanges()
{
DataSet myDataSet;
myDataSet = new DataSet();
// Not shown: methods to fill the DataSet with data.
DataTable t;
t = myDataSet.Tables["Suppliers"];
// Add a DataRow to a table.
DataRow myRow;
myRow = t.NewRow();
myRow["CompanyID"] = "NWTRADECO";
myRow["CompanyName"] = "NortWest Trade Company";
// Add the row.
t.Rows.Add( myRow );
// Calling AcceptChanges on the DataSet causes AcceptChanges to be
// called on all subordinate objects.
myDataSet.AcceptChanges();
}
Private Sub AcceptChanges()
Dim myDataSet As DataSet
myDataSet = new DataSet()
' Not shown: methods to fill the DataSet with data.
Dim t As DataTable
t = myDataSet.Tables("Suppliers")
' Add a DataRow to a table.
Dim myRow As DataRow
myRow = t.NewRow()
myRow("CompanyID") = "NWTRADECO"
myRow("CompanyName") = "NortWest Trade Company"
' Add the row.
t.Rows.Add( myRow )
' Calling AcceptChanges on the DataSet causes AcceptChanges to be
' called on all subordinate objects.
myDataSet.AcceptChanges()
End Sub
注解
DataRow和 DataTable 类都有AcceptChanges方法。 在 DataTable 级别调用 AcceptChanges 会导致AcceptChanges调用每个DataRow方法。 同样,对 AcceptChangesDataSet 调用 会导致 AcceptChanges 在 中的每个表上 DataSet调用 。 这样,就可以在多个级别上调用 方法。 AcceptChanges调用 的 DataSet 使你能够对所有从属对象调用 方法, (例如,表和行) 一次调用。
在 上调用 AcceptChanges
时, DataSet
仍处于编辑模式的任何 DataRow 对象都已成功结束其编辑。 RowState每个 DataRow 的 属性也会更改;Added
行Modified
变为 Unchanged
,而Deleted
行将被删除。
DataSet
如果 包含 ForeignKeyConstraint 对象,则调用 AcceptChanges
方法还会导致AcceptRejectRule强制实施 。
注意
AcceptChanges
和 RejectChanges
仅适用于 DataRow
(“添加”、“删除”、“删除”和“修改”) 的相关更改。 它们不适用于架构或结构更改。
如果已使用 DataAdapter 填充 DataSet,则调用 AcceptChange 不会将这些更改复制回数据源中。 在此情况下,请改为调用 Update。 有关详细信息 ,请参阅使用 DataAdapters 更新数据源 。