FileDocCategorySizeDatePackage
Types.javaAPI DocAndroid 1.5 API6059Wed May 06 22:41:06 BST 2009java.sql

Types

public class Types extends Object
A class which defines constants used to identify generic SQL types, also called JDBC types. The type constant values are equivalent to those defined by X/OPEN.
since
Android 1.0

Fields Summary
public static final int
ARRAY
The type code that identifies the SQL type {@code ARRAY}.
public static final int
BIGINT
The type code that identifies the SQL type {@code BIGINT}.
public static final int
BINARY
The type code that identifies the SQL type {@code BINARY}.
public static final int
BIT
The type code that identifies the SQL type {@code BIT}.
public static final int
BLOB
The type code that identifies the SQL type {@code BLOB}.
public static final int
BOOLEAN
The type code that identifies the SQL type {@code BOOLEAN}.
public static final int
CHAR
The type code that identifies the SQL type {@code CHAR}.
public static final int
CLOB
The type code that identifies the SQL type {@code CLOB}.
public static final int
DATALINK
The type code that identifies the SQL type {@code DATALINK}.
public static final int
DATE
The type code that identifies the SQL type {@code DATE}.
public static final int
DECIMAL
The type code that identifies the SQL type {@code DECIMAL}.
public static final int
DISTINCT
The type code that identifies the SQL type {@code DISTINCT}.
public static final int
DOUBLE
The type code that identifies the SQL type {@code DOUBLE}.
public static final int
FLOAT
The type code that identifies the SQL type {@code FLOAT}.
public static final int
INTEGER
The type code that identifies the SQL type {@code INTEGER}.
public static final int
JAVA_OBJECT
The type code that identifies the SQL type {@code JAVA_OBJECT}.
public static final int
LONGVARBINARY
The type code that identifies the SQL type {@code LONGVARBINARY}.
public static final int
LONGVARCHAR
The type code that identifies the SQL type {@code LONGVARCHAR}.
public static final int
NULL
The type code that identifies the SQL type {@code NULL}.
public static final int
NUMERIC
The type code that identifies the SQL type {@code NUMERIC}.
public static final int
OTHER
The type code that identifies that the SQL type is database specific and is mapped to a Java object, accessed via the methods {@code getObject} and {@code setObject}.
public static final int
REAL
The type code that identifies the SQL type {@code REAL}.
public static final int
REF
The type code that identifies the SQL type {@code REF}.
public static final int
SMALLINT
The type code that identifies the SQL type {@code SMALLINT}.
public static final int
STRUCT
The type code that identifies the SQL type {@code STRUCT}.
public static final int
TIME
The type code that identifies the SQL type {@code TIME}.
public static final int
TIMESTAMP
The type code that identifies the SQL type {@code TIMESTAMP}.
public static final int
TINYINT
The type code that identifies the SQL type {@code TINYINT}.
public static final int
VARBINARY
The type code that identifies the SQL type {@code VARBINARY}.
public static final int
VARCHAR
The type code that identifies the SQL type {@code VARCHAR}.
Constructors Summary
private Types()

        super();
    
Methods Summary