error messages review
[mono.git] / mcs / class / FirebirdSql.Data.Firebird / FirebirdSql.Data.Common / DbDataType.cs
1 /*\r
2  *  Firebird ADO.NET Data provider for .NET and Mono \r
3  * \r
4  *     The contents of this file are subject to the Initial \r
5  *     Developer's Public License Version 1.0 (the "License"); \r
6  *     you may not use this file except in compliance with the \r
7  *     License. You may obtain a copy of the License at \r
8  *     http://www.firebirdsql.org/index.php?op=doc&id=idpl\r
9  *\r
10  *     Software distributed under the License is distributed on \r
11  *     an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either \r
12  *     express or implied.  See the License for the specific \r
13  *     language governing rights and limitations under the License.\r
14  * \r
15  *  Copyright (c) 2002, 2005 Carlos Guzman Alvarez\r
16  *  All Rights Reserved.\r
17  */\r
18 \r
19 using System;\r
20 \r
21 namespace FirebirdSql.Data.Common\r
22 {\r
23         internal enum DbDataType\r
24         {\r
25                 Array,\r
26                 BigInt,\r
27                 Binary,\r
28                 Char,\r
29                 Date,\r
30                 Decimal,\r
31                 Double,\r
32                 Float,\r
33                 Guid,\r
34                 Integer,\r
35                 Numeric,\r
36                 SmallInt,\r
37                 Text,\r
38                 Time,\r
39                 TimeStamp,\r
40                 VarChar\r
41         }\r
42 }