다음을 통해 공유


DataSet.AcceptChanges 메서드

DataSet이 로드된 이후 또는 AcceptChanges가 마지막으로 호출된 이후에 변경된 DataSet의 모든 내용을 커밋합니다.

네임스페이스: System.Data
어셈블리: System.Data(system.data.dll)

구문

‘선언
Public Sub AcceptChanges
‘사용 방법
Dim instance As DataSet

instance.AcceptChanges
public void AcceptChanges ()
public:
void AcceptChanges ()
public void AcceptChanges ()
public function AcceptChanges ()

설명

DataRow 클래스와 DataTable 클래스 모두에 AcceptChanges 메서드가 있습니다. DataTable 수준에서 AcceptChanges를 호출하면 각 DataRow에 대한 AcceptChanges 메서드가 호출됩니다. 또한 DataSet에 대해 AcceptChanges를 호출하면 DataSet의 각 테이블에 대해 AcceptChanges가 호출됩니다. 이런 방법으로 여러 수준의 메서드를 호출할 수 있습니다. DataSetAcceptChanges를 호출하면 한 번 호출로 모든 하위 개체(예: 테이블 및 행)에 대해 해당 메서드를 호출할 수 있습니다.

DataSet에 대해 AcceptChanges를 호출해도 편집 모드 상태인 모든 DataRow 개체의 편집이 성공적으로 완료됩니다. 또한 각 DataRowRowState 속성이 변경됩니다. 즉, AddedModified 행은 Unchanged가 되고 Deleted 행은 제거됩니다.

DataSetForeignKeyConstraint 개체가 있는 경우 AcceptChanges 메서드를 호출하면 AcceptRejectRule도 적용됩니다.

예제

다음 예제에서는 DataRowDataSetDataTable에 추가합니다. 그런 다음 DataSet에서 AcceptChanges 메서드가 호출되어 포함된 모든 DataTable 개체에 적용됩니다.

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
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();
}

플랫폼

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

2.0, 1.1, 1.0에서 지원

.NET Compact Framework

2.0, 1.0에서 지원

참고 항목

참조

DataSet 클래스
DataSet 멤버
System.Data 네임스페이스

기타 리소스

ADO.NET에서 DataSet 사용