| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // System.Data.DbType.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- namespace System.Data
- {
- /// <summary>
- /// Gets the data type of a field, a property, or a Parameter object of a .NET data provider.
- /// </summary>
- public enum DbType
- {
- AnsiString,
- Binary,
- Boolean,
- Byte,
- Currency,
- Date,
- DateTime,
- Decimal,
- Double,
- Guid,
- Int16,
- Int32,
- Int64,
- Object,
- SByte,
- Single,
- String,
- Time,
- UInt16,
- UInt32,
- UInt64,
- VarNumeric
- }
- }
|