|
Mimer JDBC/MIDP 2.12 | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Object | +--com.mimer.jdbc.Types
Constants referring to server SQL datatypes.
| Field Summary | |
static int |
BIGINT
The SQL datatype BIGINT. |
static int |
BINARY
The SQL standard does not support a BINARY data type. |
static int |
BIT
This constant identifies the SQL datatype BIT. |
static int |
BLOB
The SQL data type BINARY LARGE OBJECT (BLOB). |
static int |
CHAR
The SQL datatype CHARACTER. |
static int |
CLOB
The SQL data type CHARACTER LARGE OBJECT (BLOB). |
static int |
DATE
The SQL datatype DATE. |
static int |
DECIMAL
The SQL datatype DECIMAL. |
static int |
DOUBLE
The SQL datatype DOUBLE PRECISION. |
static int |
FLOAT
The SQL datatype FLOAT. |
static int |
INTEGER
The SQL datatype INTEGER. |
static int |
LONGVARBINARY
A long BINARY VARYING data type. |
static int |
LONGVARCHAR
A long CHARACTER VARYING data type. |
static int |
NULL
|
static int |
NUMERIC
The SQL datatype NUMERIC. |
static int |
OTHER
|
static int |
REAL
The SQL datatype REAL. |
static int |
SMALLINT
The SQL datatype SMALLINT. |
static int |
TIME
The SQL datatype TIME. |
static int |
TIMESTAMP
The SQL datatype TIMESTAMP. |
static int |
TINYINT
This constant identifies a SQL datatype TINYINT. |
static int |
VARBINARY
The SQL standard does not support a BINARY data type. |
static int |
VARCHAR
The SQL datatype CHARACTER VARYING. |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
public static final int BIGINT
BIGINT. This JDBC type code may also correspond
to the Mimer specific datatype INTEGER(n), where n>=10.
public static final int BINARY
public static final int BIT
BIT. This type was introduced in
the SQL-99 standard but will be removed in SQL-2003. For this reason, Mimer SQL
has no native bit datatype, but always has a preinstalled system domain (ODBC.BIT)
for this type.
public static final int BLOB
BINARY LARGE OBJECT (BLOB). Mimer supports BLOB:s
of up to 8 TB in length.
public static final int CHAR
CHARACTER. In Mimer SQL this corresponds
to a 8-bit per character string of characters, of up to 15000 characters.
public static final int CLOB
CHARACTER LARGE OBJECT (BLOB). Mimer supports CLOB:s
of up to 8 TB in length. Mimer SQL also supports NATIONAL CHARACTER LARGE OBJECTS
for Unicode data. This code represents both of tehse server data types.
public static final int DATE
DATE.
public static final int DECIMAL
DECIMAL.
public static final int DOUBLE
DOUBLE PRECISION.
public static final int FLOAT
FLOAT. This JDBC type code may also correspond
to the Mimer specific datatype FLOAT(n).
public static final int INTEGER
INTEGER. This JDBC type code may also correspond
to the Mimer specific datatype INTEGER(n), where 4<=n<10.
public static final int LONGVARBINARY
BINARY VARYING data type. In Mimer SQL this corresponds
to a BINARY LARGE OBJECT (BLOB), server data type. This is a 8-bit per character
string of up to 8 TB in length.
public static final int LONGVARCHAR
CHARACTER VARYING data type. In Mimer SQL this corresponds
to a CHARACTER LARGE OBJECT (CLOB), server data type. This is a 8-bit per character
string of up to 8 TB in length.
public static final int NULL
public static final int NUMERIC
NUMERIC.
public static final int OTHER
public static final int REAL
REAL.
public static final int SMALLINT
SMALLINT. This JDBC type code may also correspond
to the Mimer specific datatype INTEGER(n), where n<5.
public static final int TIME
TIME.
public static final int TIMESTAMP
TIMESTAMP.
public static final int TINYINT
TINYINT. Unfortunately, the
SQL standard does not include such a datatype. In Mimer SQL this code corresponds
to the ODBC.TINYINT system domain.
public static final int VARBINARY
public static final int VARCHAR
CHARACTER VARYING. In Mimer SQL this corresponds
to a 8-bit per character string of characters, with length specification, of up to 15000 characters.
|
Mimer JDBC/MIDP 2.12 | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||