Update Reference Sources to .NET Framework 4.6
[mono.git] / mcs / class / referencesource / System.Data / System / Data / Odbc / OdbcType.cs
1 //------------------------------------------------------------------------------
2 // <copyright file="OdbcType.cs" company="Microsoft">
3 //      Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 // <owner current="true" primary="true">mithomas</owner>
6 // <owner current="true" primary="false">markash</owner>
7 //------------------------------------------------------------------------------
8
9 using System;
10 using System.Data;
11
12 namespace System.Data.Odbc
13 {
14     public enum OdbcType {
15         BigInt = 1,
16         Binary = 2,
17         Bit = 3,
18         Char = 4,
19         DateTime = 5,
20         Decimal = 6,
21         Numeric = 7,
22         Double = 8,
23         Image = 9,
24         Int = 10,
25         NChar = 11,
26         NText = 12,
27         NVarChar = 13,
28         Real = 14,
29         UniqueIdentifier = 15,
30         SmallDateTime = 16,
31         SmallInt = 17,
32         Text = 18,
33         Timestamp = 19,
34         TinyInt = 20,
35         VarBinary = 21,
36         VarChar = 22,
37         Date = 23,
38         Time = 24,
39     }
40 }