| File: OleDbType.cs | Web Access |
| Project: src\runtime\src\libraries\System.Data.OleDb\src\System.Data.OleDb.csproj (System.Data.OleDb) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Data.OleDb { public enum OleDbType { BigInt = 20, Binary = 128, Boolean = 11, BSTR = 8, Char = 129, Currency = 6, Date = 7, DBDate = 133, DBTime = 134, DBTimeStamp = 135, Decimal = 14, Double = 5, Empty = 0, Error = 10, Filetime = 64, Guid = 72, IDispatch = 9, Integer = 3, IUnknown = 13, LongVarBinary = 205, LongVarChar = 201, LongVarWChar = 203, Numeric = 131, PropVariant = 138, Single = 4, SmallInt = 2, TinyInt = 16, UnsignedBigInt = 21, UnsignedInt = 19, UnsignedSmallInt = 18, UnsignedTinyInt = 17, VarBinary = 204, VarChar = 200, Variant = 12, VarNumeric = 139, VarWChar = 202, WChar = 130, } }