SchemaTableColumn.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // System.Data.Common.SchemaTableColumn.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 SchemaTableColumn
  12. {
  13. #region Fields
  14. public static readonly string AllowDBNull = "AllowDBNull";
  15. public static readonly string BaseColumnName = "BaseColumnName";
  16. public static readonly string BaseSchemaName = "BaseSchemaName";
  17. public static readonly string BaseTableName = "BaseTableName";
  18. public static readonly string ColumnName = "ColumnName";
  19. public static readonly string ColumnOrdinal = "ColumnOrdinal";
  20. public static readonly string ColumnSize = "ColumnSize";
  21. public static readonly string DataType = "DataType";
  22. public static readonly string IsAliased = "IsAliased";
  23. public static readonly string IsExpression = "IsExpression";
  24. public static readonly string IsKey = "IsKey";
  25. public static readonly string IsLong = "IsLong";
  26. public static readonly string IsUnique = "IsUnique";
  27. public static readonly string NumericPrecision = "NumericPrecision";
  28. public static readonly string NumericScale = "NumericScale";
  29. public static readonly string ProviderType = "ProviderType";
  30. #endregion // Fields
  31. }
  32. }
  33. #endif // NET_1_2