SqlDbType.cs 505 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // System.Data.SqlDbType.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Specifies SQL Server data types.
  13. /// </summary>
  14. public enum SqlDbType
  15. {
  16. BigInt,
  17. Binary,
  18. Bit,
  19. Char,
  20. DateTime,
  21. Decimal,
  22. Float,
  23. Image,
  24. Int,
  25. Money,
  26. NChar,
  27. NText,
  28. NVarChar,
  29. Real,
  30. SmallDateTime,
  31. SmallInt,
  32. SmallMoney,
  33. Text,
  34. Timestamp,
  35. TinyInt,
  36. UniqueIdentifier,
  37. VarBinary,
  38. VarChar,
  39. Variant
  40. }
  41. }