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

SqlCompareOptions.cs « System.Data.SqlTypes « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c07a93e220cfae883c75887b6e057e2392e8d832 (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
26
27
28
29
//
// System.Data.SqlTypes.SqlCompareOptions.cs
//
// Author:
//   Rodrigo Moya (rodrigo@ximian.com)
//   Daniel Morgan (danmorg@sc.rr.com)
//
// (C) Ximian, Inc. 2002
//

namespace System.Data.SqlTypes
{
	/// <summary>
	/// compare option values for SqlString
	/// </summary>
	[Flags]
	[Serializable]
	public enum SqlCompareOptions {
		BinarySort,
		IgnoreCase,
		IgnoreKanaType,
		IgnoreNonSpace,
		IgnoreWidth,
		None
	}

}