// // System.Data.DbType.cs // // Author: // Christopher Podurgiel (cpodurgiel@msn.com) // // (C) Chris Podurgiel // namespace System.Data { /// /// Gets the data type of a field, a property, or a Parameter object of a .NET data provider. /// 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 } }