Name

UpdateStatus

Synopsis

This enumeration is used to specify the Status property of the System.Data.Common.RowUpdatingEventArgs and System.Data.Common.RowUpdatedEventArgs classes. These objects are provided to clients when handling row update events for a data adapter. The UpdateStatus enumeration specifies whether to continue the update, raise an error, skip the current row (usually because the update failed), or skip all the remaining rows.

public enum UpdateStatus {

   Continue = 0,

   ErrorsOccurred = 1,

   SkipCurrentRow = 2,

   SkipAllRemainingRows = 3

}

Hierarchy

System.Object System.ValueType System.Enum(System.IComparable, System.IFormattable, System.IConvertible) UpdateStatus

Returned By

System.Data.Common.RowUpdatedEventArgs.Status, System.Data.Common.RowUpdatingEventArgs.Status

Passed To

System.Data.Common.RowUpdatedEventArgs.Status, System.Data.Common.RowUpdatingEventArgs.Status

Get ADO.NET in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.