SchemaTableOptionalColumn.cs 784 B

12345678910111213141516171819202122232425262728
  1. //
  2. // System.Data.Common.SchemaTableOptionalColumn.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. namespace System.Data.Common {
  11. public sealed class SchemaTableOptionalColumn
  12. {
  13. #region Fields
  14. public static readonly string BaseCatalogName = "BaseCatalogName";
  15. public static readonly string BaseServerName = "BaseServerName";
  16. public static readonly string IsAutoIncrement = "IsAutoIncrement";
  17. public static readonly string IsHidden = "IsHidden";
  18. public static readonly string IsReadOnly = "IsReadOnly";
  19. public static readonly string IsRowVersion = "IsRowVersion";
  20. public static readonly string ProviderSpecificDataType = "ProviderSpecificDataType";
  21. #endregion // Fields
  22. }
  23. }
  24. #endif // NET_1_2