disable broken tests on net_4_0
[mcs.git] / class / Npgsql / NpgsqlTypes / NpgsqlDbType.cs
blobd3f8c87d19be3c50100e7e4e017b6e1c1172fdce
1 // NpgsqlTypes.NpgsqlDbType.cs
2 //
3 // Author:
4 // Francisco Jr. (fxjrlists@yahoo.com.br)
5 //
6 // Copyright (C) 2002 The Npgsql Development Team
7 // npgsql-general@gborg.postgresql.org
8 // http://gborg.postgresql.org/project/npgsql/projdisplay.php
9 //
10 // This library is free software; you can redistribute it and/or
11 // modify it under the terms of the GNU Lesser General Public
12 // License as published by the Free Software Foundation; either
13 // version 2.1 of the License, or (at your option) any later version.
15 // This library is distributed in the hope that it will be useful,
16 // but WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 // Lesser General Public License for more details.
20 // You should have received a copy of the GNU Lesser General Public
21 // License along with this library; if not, write to the Free Software
22 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 using System;
25 using Npgsql;
27 namespace NpgsqlTypes
29 public enum NpgsqlDbType
32 // This list used to be ordered. But this ordering would break compiled applications
33 // as enum values would change after each insertion. Now, just append new types.
35 Bigint,
36 Boolean,
37 Box,
38 Bytea,
39 Circle,
40 Char,
41 Date,
42 Double,
43 Integer,
44 Line,
45 LSeg,
46 Money,
47 Numeric,
48 Path,
49 Point,
50 Polygon,
51 Real,
52 Smallint,
53 Text,
54 Time,
55 Timestamp,
56 Varchar,
57 Refcursor,
58 Inet,
59 Bit,
60 TimestampTZ