DataRow.AcceptChanges Metodo

Definizione

Conferma tutte le modifiche apportate a questa riga dall'ultima chiamata al metodo AcceptChanges().

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

Eccezioni

La riga non appartiene alla tabella.

Esempio

Nell'esempio seguente viene prima creato un nuovo DataTable oggetto con una colonna e quindi viene creato un singolo DataRowoggetto . DataRow Man mano che viene creato, aggiunto, modificato ed eliminato, viene stampato il relativo RowState oggetto.

private void DemonstrateAcceptChanges()
{
    //Run a function to create a DataTable with one column.
    DataTable table = MakeTable();
    DataRow row;

    // Create a new DataRow.
    row = table.NewRow();
    // Detached row.
    Console.WriteLine("New Row " + row.RowState);

    table.Rows.Add(row);
    // New row.
    Console.WriteLine("AddRow " + row.RowState);

    table.AcceptChanges();
    // Unchanged row.
    Console.WriteLine("AcceptChanges " + row.RowState);

    row["FirstName"] = "Scott";
    // Modified row.
    Console.WriteLine("Modified " + row.RowState);

    row.Delete();
    // Deleted row.
    Console.WriteLine("Deleted " + row.RowState);
}

private DataTable MakeTable()
{
    // Make a simple table with one column.
    DataTable table = new DataTable("table");
    DataColumn fnameColumn = new DataColumn(
        "FirstName", Type.GetType("System.String"));
    table.Columns.Add(fnameColumn);
    return table;
}
Private Sub DemonstrateAcceptChanges()
    ' Run a function to create a DataTable with one column.
    Dim table As DataTable = MakeTable()
    Dim row As DataRow 
 
    ' Create a new DataRow.
    row = table.NewRow()
    ' Detached row.
    Console.WriteLine("New Row " & row.RowState)
 
    table.Rows.Add(row)
    ' New row.
    Console.WriteLine("AddRow " & row.RowState)
 
    table.AcceptChanges()
    ' Unchanged row.
    Console.WriteLine("AcceptChanges " & row.RowState)
 
    row("FirstName") = "Scott"
    ' Modified row.
    Console.WriteLine("Modified " & row.RowState)
 
    row.Delete()
    ' Deleted row.
    Console.WriteLine("Deleted " & row.RowState)
 End Sub
 
 Private Function MakeTable()As DataTable
    ' Make a simple table with one column.
    Dim table As New DataTable("table")
    Dim fnameColumn As New DataColumn( _
        "FirstName", Type.GetType("System.String"))
    table.Columns.Add(fnameColumn)
    MakeTable = table
 End Function

Commenti

Quando si richiama AcceptChanges, il EndEdit metodo viene chiamato in modo implicito per terminare eventuali modifiche. Se l'oggetto RowState della riga è stato Aggiunto o Modificato, l'oggetto RowState diventa Invariato. Se è RowState stato eliminato, la riga viene rimossa.

Per altre informazioni, vedere il metodo BeginEdit .

La DataTable classe include anche un AcceptChanges metodo che influisce sulle modifiche apportate all'intera tabella. Per altre informazioni e un esempio di codice che illustra come accettare e rifiutare le modifiche alle singole righe di dati, vedere AcceptChanges e RejectChanges.

Si applica a

Vedi anche