Update Reference Sources to .NET Framework 4.6.1
[mono.git] / mcs / class / referencesource / System.Data / System / Data / ProviderBase / DbMetaDataColumnNames.cs
1 //------------------------------------------------------------------------------
2 // <copyright file="DbMetaDataColumnNames.cs" company="Microsoft">
3 //      Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 // <owner current="true" primary="true">[....]</owner>
6 // <owner current="true" primary="false">[....]</owner>
7 //------------------------------------------------------------------------------
8
9 namespace System.Data.Common {
10
11     public static class DbMetaDataColumnNames {
12
13         public static readonly string CollectionName            = "CollectionName";
14         public static readonly string ColumnSize                = "ColumnSize";
15         public static readonly string CompositeIdentifierSeparatorPattern = "CompositeIdentifierSeparatorPattern";
16         public static readonly string CreateFormat              = "CreateFormat";
17         public static readonly string CreateParameters          = "CreateParameters";
18         public static readonly string DataSourceProductName     = "DataSourceProductName";
19         public static readonly string DataSourceProductVersion  = "DataSourceProductVersion";
20         public static readonly string DataType                  = "DataType";
21         public static readonly string DataSourceProductVersionNormalized = "DataSourceProductVersionNormalized";
22         public static readonly string GroupByBehavior           = "GroupByBehavior";
23         public static readonly string IdentifierCase            = "IdentifierCase";
24         public static readonly string IdentifierPattern         = "IdentifierPattern";
25         public static readonly string IsAutoIncrementable       = "IsAutoIncrementable";
26         public static readonly string IsBestMatch               = "IsBestMatch";
27         public static readonly string IsCaseSensitive           = "IsCaseSensitive";
28         public static readonly string IsConcurrencyType         = "IsConcurrencyType";
29         public static readonly string IsFixedLength             = "IsFixedLength";
30         public static readonly string IsFixedPrecisionScale     = "IsFixedPrecisionScale";
31         public static readonly string IsLiteralSupported        = "IsLiteralSupported";
32         public static readonly string IsLong                    = "IsLong";
33         public static readonly string IsNullable                = "IsNullable";
34         public static readonly string IsSearchable              = "IsSearchable";
35         public static readonly string IsSearchableWithLike      = "IsSearchableWithLike";
36         public static readonly string IsUnsigned                = "IsUnsigned";
37         public static readonly string LiteralPrefix             = "LiteralPrefix";
38         public static readonly string LiteralSuffix             = "LiteralSuffix";
39         public static readonly string MaximumScale              = "MaximumScale";
40         public static readonly string MinimumScale              = "MinimumScale";
41         public static readonly string NumberOfIdentifierParts   = "NumberOfIdentifierParts";
42         public static readonly string NumberOfRestrictions      = "NumberOfRestrictions";
43         public static readonly string OrderByColumnsInSelect    = "OrderByColumnsInSelect";
44         public static readonly string ParameterMarkerFormat     = "ParameterMarkerFormat";
45         public static readonly string ParameterMarkerPattern    = "ParameterMarkerPattern";
46         public static readonly string ParameterNameMaxLength    = "ParameterNameMaxLength";
47         public static readonly string ParameterNamePattern      = "ParameterNamePattern";
48         public static readonly string ProviderDbType            = "ProviderDbType";
49         public static readonly string QuotedIdentifierCase      = "QuotedIdentifierCase";
50         public static readonly string QuotedIdentifierPattern   = "QuotedIdentifierPattern";
51         public static readonly string ReservedWord              = "ReservedWord";
52         public static readonly string StatementSeparatorPattern = "StatementSeparatorPattern";
53         public static readonly string StringLiteralPattern      = "StringLiteralPattern";
54         public static readonly string SupportedJoinOperators    = "SupportedJoinOperators";
55         public static readonly string TypeName                  = "TypeName";
56     }
57 }
58