Welcome to mirror list, hosted at ThFree Co, Russian Federation.

UpdateStatus.cs « System.Data « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f686d6cd1aad3e83cf07678f1499c3223e7cbafb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//
// System.Data.UpdateStatus.cs
//
// Author:
//   Christopher Podurgiel (cpodurgiel@msn.com)
//
// (C) Chris Podurgiel
//

using System;

namespace System.Data
{
	/// <summary>
	/// Specifies the action to take with regard to the current and remaining rows during an Update.
	/// </summary>
	[Serializable]
	public enum UpdateStatus
	{
		Continue = 0,
		ErrorsOccurred = 1,
		SkipCurrentRow = 2,
		SkipAllRemainingRows = 3
	}
}