Uses of Class
org.jooq.impl.SQLDataType

Packages that use SQLDataType
org.jooq   
org.jooq.impl   
 

Uses of SQLDataType in org.jooq
 

Methods in org.jooq that return SQLDataType
 SQLDataType<T> DataType.getSQLDataType()
          Get the standard SQL data type of this (dialect-specific) data type if available.
 

Uses of SQLDataType in org.jooq.impl
 

Fields in org.jooq.impl declared as SQLDataType
static SQLDataType<Long> SQLDataType.BIGINT
          The Types.BIGINT type
static SQLDataType<ULong> SQLDataType.BIGINTUNSIGNED
          The unsigned Types.BIGINT type
static SQLDataType<byte[]> SQLDataType.BINARY
          The Types.BINARY type
static SQLDataType<Boolean> SQLDataType.BIT
          The Types.BIT type
static SQLDataType<byte[]> SQLDataType.BLOB
          The Types.BLOB type
static SQLDataType<Boolean> SQLDataType.BOOLEAN
          The Types.BOOLEAN type
static SQLDataType<String> SQLDataType.CHAR
          The Types.CHAR type
static SQLDataType<String> SQLDataType.CLOB
          The Types.CLOB type
static SQLDataType<Date> SQLDataType.DATE
          The Types.DATE type
static SQLDataType<BigDecimal> SQLDataType.DECIMAL
          The Types.DECIMAL type
static SQLDataType<BigInteger> SQLDataType.DECIMAL_INTEGER
          The zero-scale Types.DECIMAL type
static SQLDataType<Double> SQLDataType.DOUBLE
          The Types.DOUBLE type
static SQLDataType<Double> SQLDataType.FLOAT
          The Types.FLOAT type
static SQLDataType<Integer> SQLDataType.INTEGER
          The Types.INTEGER type
static SQLDataType<UInteger> SQLDataType.INTEGERUNSIGNED
          The unsigned Types.INTEGER type
static SQLDataType<DayToSecond> SQLDataType.INTERVALDAYTOSECOND
          The SQL standard INTERVAL DAY TO SECOND data type
static SQLDataType<YearToMonth> SQLDataType.INTERVALYEARTOMONTH
          The SQL standard INTERVAL YEAR TO MONTH data type
static SQLDataType<String> SQLDataType.LONGNVARCHAR
          The Types.LONGNVARCHAR type
static SQLDataType<byte[]> SQLDataType.LONGVARBINARY
          The Types.LONGVARBINARY type
static SQLDataType<String> SQLDataType.LONGVARCHAR
          The Types.LONGVARCHAR type
static SQLDataType<String> SQLDataType.NCHAR
          The Types.NCHAR type
static SQLDataType<String> SQLDataType.NCLOB
          The Types.NCLOB type
static SQLDataType<BigDecimal> SQLDataType.NUMERIC
          The Types.NUMERIC type
static SQLDataType<String> SQLDataType.NVARCHAR
          The Types.NVARCHAR type
static SQLDataType<Object> SQLDataType.OTHER
          The Types.OTHER type
static SQLDataType<Float> SQLDataType.REAL
          The Types.REAL type
static SQLDataType<Result<Record>> SQLDataType.RESULT
          The ResultSet type This is not a SQL or JDBC standard.
static SQLDataType<Short> SQLDataType.SMALLINT
          The Types.SMALLINT type
static SQLDataType<UShort> SQLDataType.SMALLINTUNSIGNED
          The unsigned Types.SMALLINT type
static SQLDataType<Time> SQLDataType.TIME
          The Types.TIME type
static SQLDataType<Timestamp> SQLDataType.TIMESTAMP
          The Types.TIMESTAMP type
static SQLDataType<Byte> SQLDataType.TINYINT
          The Types.TINYINT type
static SQLDataType<UByte> SQLDataType.TINYINTUNSIGNED
          The unsigned Types.TINYINT type
static SQLDataType<byte[]> SQLDataType.VARBINARY
          The Types.VARBINARY type
static SQLDataType<String> SQLDataType.VARCHAR
          The Types.VARCHAR type
 

Methods in org.jooq.impl that return SQLDataType
 SQLDataType<T> AbstractDataType.getSQLDataType()
           
 

Constructors in org.jooq.impl with parameters of type SQLDataType
AbstractDataType(SQLDialect dialect, SQLDataType<T> sqldatatype, Class<? extends T> type, String typeName)
           
AbstractDataType(SQLDialect dialect, SQLDataType<T> sqldatatype, Class<? extends T> type, String typeName, boolean hasPrecisionAndScale)
           
AbstractDataType(SQLDialect dialect, SQLDataType<T> sqldatatype, Class<? extends T> type, String typeName, String castTypeName)
           
AbstractDataType(SQLDialect dialect, SQLDataType<T> sqlDataType, Class<? extends T> type, String typeName, String castTypeName, boolean hasPrecisionAndScale)
           
 



Copyright © 2012. All Rights Reserved.