| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // System.Data.SqlDbType.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- namespace System.Data
- {
- /// <summary>
- /// Specifies SQL Server data types.
- /// </summary>
- public enum SqlDbType
- {
- BigInt,
- Binary,
- Bit,
- Char,
- DateTime,
- Decimal,
- Float,
- Image,
- Int,
- Money,
- NChar,
- NText,
- NVarChar,
- Real,
- SmallDateTime,
- SmallInt,
- SmallMoney,
- Text,
- Timestamp,
- TinyInt,
- UniqueIdentifier,
- VarBinary,
- VarChar,
- Variant
- }
- }
|