DbMetaDataColumnNames.cs 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. namespace System.Data.Common {
  9. public static class DbMetaDataColumnNames {
  10. public static readonly string CollectionName = "CollectionName";
  11. public static readonly string ColumnSize = "ColumnSize";
  12. public static readonly string CompositeIdentifierSeparatorPattern = "CompositeIdentifierSeparatorPattern";
  13. public static readonly string CreateFormat = "CreateFormat";
  14. public static readonly string CreateParameters = "CreateParameters";
  15. public static readonly string DataSourceProductName = "DataSourceProductName";
  16. public static readonly string DataSourceProductVersion = "DataSourceProductVersion";
  17. public static readonly string DataType = "DataType";
  18. public static readonly string DataSourceProductVersionNormalized = "DataSourceProductVersionNormalized";
  19. public static readonly string GroupByBehavior = "GroupByBehavior";
  20. public static readonly string IdentifierCase = "IdentifierCase";
  21. public static readonly string IdentifierPattern = "IdentifierPattern";
  22. public static readonly string IsAutoIncrementable = "IsAutoIncrementable";
  23. public static readonly string IsBestMatch = "IsBestMatch";
  24. public static readonly string IsCaseSensitive = "IsCaseSensitive";
  25. public static readonly string IsConcurrencyType = "IsConcurrencyType";
  26. public static readonly string IsFixedLength = "IsFixedLength";
  27. public static readonly string IsFixedPrecisionScale = "IsFixedPrecisionScale";
  28. public static readonly string IsLiteralSupported = "IsLiteralSupported";
  29. public static readonly string IsLong = "IsLong";
  30. public static readonly string IsNullable = "IsNullable";
  31. public static readonly string IsSearchable = "IsSearchable";
  32. public static readonly string IsSearchableWithLike = "IsSearchableWithLike";
  33. public static readonly string IsUnsigned = "IsUnsigned";
  34. public static readonly string LiteralPrefix = "LiteralPrefix";
  35. public static readonly string LiteralSuffix = "LiteralSuffix";
  36. public static readonly string MaximumScale = "MaximumScale";
  37. public static readonly string MinimumScale = "MinimumScale";
  38. public static readonly string NumberOfIdentifierParts = "NumberOfIdentifierParts";
  39. public static readonly string NumberOfRestrictions = "NumberOfRestrictions";
  40. public static readonly string OrderByColumnsInSelect = "OrderByColumnsInSelect";
  41. public static readonly string ParameterMarkerFormat = "ParameterMarkerFormat";
  42. public static readonly string ParameterMarkerPattern = "ParameterMarkerPattern";
  43. public static readonly string ParameterNameMaxLength = "ParameterNameMaxLength";
  44. public static readonly string ParameterNamePattern = "ParameterNamePattern";
  45. public static readonly string ProviderDbType = "ProviderDbType";
  46. public static readonly string QuotedIdentifierCase = "QuotedIdentifierCase";
  47. public static readonly string QuotedIdentifierPattern = "QuotedIdentifierPattern";
  48. public static readonly string ReservedWord = "ReservedWord";
  49. public static readonly string StatementSeparatorPattern = "StatementSeparatorPattern";
  50. public static readonly string StringLiteralPattern = "StringLiteralPattern";
  51. public static readonly string SupportedJoinOperators = "SupportedJoinOperators";
  52. public static readonly string TypeName = "TypeName";
  53. }
  54. }