DbType.cs 519 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // System.Data.DbType.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Gets the data type of a field, a property, or a Parameter object of a .NET data provider.
  13. /// </summary>
  14. public enum DbType
  15. {
  16. AnsiString,
  17. Binary,
  18. Boolean,
  19. Byte,
  20. Currency,
  21. Date,
  22. DateTime,
  23. Decimal,
  24. Double,
  25. Guid,
  26. Int16,
  27. Int32,
  28. Int64,
  29. Object,
  30. SByte,
  31. Single,
  32. String,
  33. Time,
  34. UInt16,
  35. UInt32,
  36. UInt64,
  37. VarNumeric
  38. }
  39. }