All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.sql.Types

java.lang.Object
   |
   +----java.sql.Types

public class Types
extends Object

This class defines constants that are used to identify SQL types. The actual type constant values are equivalent to those in XOPEN.


Variable Index

 o BIGINT
 o BINARY
 o BIT
 o CHAR
 o DATE
 o DECIMAL
 o DOUBLE
 o FLOAT
 o INTEGER
 o LONGVARBINARY
 o LONGVARCHAR
 o NULL
 o NUMERIC
 o OTHER
OTHER indicates that the SQL type is database specific and gets mapped to a Java object which can be accessed via getObject and setObject.
 o REAL
 o SMALLINT
 o TIME
 o TIMESTAMP
 o TINYINT
 o VARBINARY
 o VARCHAR

Variables

 o BIT
  public final static int BIT
 o TINYINT
  public final static int TINYINT
 o SMALLINT
  public final static int SMALLINT
 o INTEGER
  public final static int INTEGER
 o BIGINT
  public final static int BIGINT
 o FLOAT
  public final static int FLOAT
 o REAL
  public final static int REAL
 o DOUBLE
  public final static int DOUBLE
 o NUMERIC
  public final static int NUMERIC
 o DECIMAL
  public final static int DECIMAL
 o CHAR
  public final static int CHAR
 o VARCHAR
  public final static int VARCHAR
 o LONGVARCHAR
  public final static int LONGVARCHAR
 o DATE
  public final static int DATE
 o TIME
  public final static int TIME
 o TIMESTAMP
  public final static int TIMESTAMP
 o BINARY
  public final static int BINARY
 o VARBINARY
  public final static int VARBINARY
 o LONGVARBINARY
  public final static int LONGVARBINARY
 o NULL
  public final static int NULL
 o OTHER
  public final static int OTHER
OTHER indicates that the SQL type is database specific and gets mapped to a Java object which can be accessed via getObject and setObject.


All Packages  Class Hierarchy  This Package  Previous  Next  Index