//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // // markash // laled //------------------------------------------------------------------------------ namespace System.Data { public enum UpdateStatus { Continue = 0, ErrorsOccurred = 1, SkipCurrentRow = 2, SkipAllRemainingRows = 3, } }