DataTable.AcceptChanges 메서드

정의

AcceptChanges()가 마지막으로 호출된 이후 이 테이블에서 변경된 내용을 모두 커밋합니다.

public:
 void AcceptChanges();
public void AcceptChanges ();
member this.AcceptChanges : unit -> unit
Public Sub AcceptChanges ()

예제

다음 예제에서는 각 테이블에서 오류를 테스트합니다. 테이블의 오류를 정의되지 않은 함수 AcceptChanges 에 전달하여 조정할 수 있는 경우 가 호출되고, RejectChanges 그렇지 않으면 가 호출됩니다.

private void AcceptOrReject(DataTable table)
{
    // If there are errors, try to reconcile.
    if(table.HasErrors)
    {
        if(Reconcile(table))
        {
            // Fixed all errors.
            table.AcceptChanges();
        }
        else
        {
            // Couldn'table fix all errors.
            table.RejectChanges();
        }
    }
    else
    {
        // If no errors, AcceptChanges.
        table.AcceptChanges();
    }
}

private bool Reconcile(DataTable thisTable)
{
    foreach(DataRow row in thisTable.Rows)
    {
        //Insert code to try to reconcile error.

        // If there are still errors return immediately
        // since the caller rejects all changes upon error.
        if(row.HasErrors)
            return false;
    }
    return true;
}
Private Sub AcceptOrReject(table As DataTable)
    ' If there are errors, try to reconcile.
        If (table.HasErrors) Then
            If (Reconcile(table)) Then
                ' Fixed all errors.
                table.AcceptChanges()
            Else
                ' Couldn'table fix all errors.
                table.RejectChanges()
            End If
        Else
            ' If no errors, AcceptChanges.
            table.AcceptChanges()
        End If
 End Sub
 
Private Function Reconcile(thisTable As DataTable) As Boolean
    Dim row As DataRow
    For Each row in thisTable.Rows
       'Insert code to try to reconcile error.

       ' If there are still errors return immediately
       ' since the caller rejects all changes upon error.
       If row.HasErrors Then
           Reconcile = False
           Exit Function
       End If
    Next row
    Reconcile = True
 End Function

설명

가 호출되면 AcceptChanges 편집 모드에 있는 모든 DataRow 개체가 편집을 성공적으로 종료합니다. 또한 모든 DataRowStateAdded 행과 Modified 행이 가 되고 UnchangedDeleted 행이 제거됩니다.

메서드를 AcceptChanges 사용 하 여 DbDataAdapter.Update 를 업데이트 DataSet 하려고 한 후 메서드는 일반적으로 호출 DataTable 됩니다는 메서드.

적용 대상

추가 정보