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

SchemaTableOptionalColumn.cs « System.Data.Common « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e9b77f2dab2c8c59f7805a1cf633ce4329baeca7 (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
//
// System.Data.Common.SchemaTableOptionalColumn.cs
//
// Author:
//   Tim Coleman (tim@timcoleman.com)
//
// Copyright (C) Tim Coleman, 2003
//

#if NET_2_0

namespace System.Data.Common {
	public sealed class SchemaTableOptionalColumn 
	{
		#region Fields
			public static readonly string BaseCatalogName = "BaseCatalogName";
			public static readonly string BaseServerName = "BaseServerName";
			public static readonly string IsAutoIncrement = "IsAutoIncrement";
			public static readonly string IsHidden = "IsHidden";
			public static readonly string IsReadOnly = "IsReadOnly";
			public static readonly string IsRowVersion = "IsRowVersion";
			public static readonly string ProviderSpecificDataType = "ProviderSpecificDataType";

		#endregion // Fields
	}
}

#endif // NET_2_0