summaryrefslogtreecommitdiff
path: root/libjava/java/sql/Types.h
blob: 8f6388fe26946cccfb1325575d8ad0ac3fe78382 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-

#ifndef __java_sql_Types__
#define __java_sql_Types__

#pragma interface

#include <java/lang/Object.h>
extern "Java"
{
  namespace java
  {
    namespace sql
    {
        class Types;
    }
  }
}

class java::sql::Types : public ::java::lang::Object
{

  Types();
public:
  static const jint BIT = -7;
  static const jint TINYINT = -6;
  static const jint SMALLINT = 5;
  static const jint INTEGER = 4;
  static const jint BIGINT = -5;
  static const jint FLOAT = 6;
  static const jint REAL = 7;
  static const jint DOUBLE = 8;
  static const jint NUMERIC = 2;
  static const jint DECIMAL = 3;
  static const jint CHAR = 1;
  static const jint VARCHAR = 12;
  static const jint LONGVARCHAR = -1;
  static const jint DATE = 91;
  static const jint TIME = 92;
  static const jint TIMESTAMP = 93;
  static const jint BINARY = -2;
  static const jint VARBINARY = -3;
  static const jint LONGVARBINARY = -4;
  static const jint NULL = 0;
  static const jint OTHER = 1111;
  static const jint JAVA_OBJECT = 2000;
  static const jint DISTINCT = 2001;
  static const jint STRUCT = 2002;
  static const jint ARRAY = 2003;
  static const jint BLOB = 2004;
  static const jint CLOB = 2005;
  static const jint REF = 2006;
  static const jint DATALINK = 70;
  static const jint BOOLEAN = 16;
  static ::java::lang::Class class$;
};

#endif // __java_sql_Types__