2004-05-15 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.Data / System.Data / SqlDbType.cs
1 //
2 // System.Data.SqlDbType.cs
3 //
4 // Author:
5 //   Christopher Podurgiel (cpodurgiel@msn.com)
6 //
7 // (C) Chris Podurgiel
8 //
9
10 using System;
11
12 namespace System.Data
13 {
14         /// <summary>
15         /// Specifies SQL Server data types.
16         /// </summary>
17         [Serializable]
18         public enum SqlDbType
19         {
20                 BigInt = 0,
21                 Binary = 1,
22                 Bit = 2,
23                 Char = 3,
24                 DateTime = 4,
25                 Decimal = 5,
26                 Float = 6,
27                 Image = 7,
28                 Int = 8,
29                 Money = 9,
30                 NChar = 10,
31                 NText = 11,
32                 NVarChar = 12,
33                 Real = 13,
34                 UniqueIdentifier = 14,
35                 SmallDateTime = 15,
36                 SmallInt = 16,
37                 SmallMoney = 17,
38                 Text = 18,
39                 Timestamp = 19,
40                 TinyInt = 20,
41                 VarBinary = 21,
42                 VarChar = 22,
43                 Variant = 23
44         }
45 }