Uses of Class
net.sf.dewdrop.sqlml.SqlDataType

Packages that use SqlDataType
net.sf.dewdrop.sql.dialect   
net.sf.dewdrop.sqlml   
net.sf.dewdrop.util   
 

Uses of SqlDataType in net.sf.dewdrop.sql.dialect
 

Methods in net.sf.dewdrop.sql.dialect with parameters of type SqlDataType
 String TypeMap.get(SqlDataType type)
          Retrieve the default type string for the specified SqlDataType.
 String TypeMap.get(SqlDataType type, int size, int precision)
          get type name for specified type and size
 void TypeMap.put(SqlDataType type, int capacity, String value)
          set a type name for specified type key and capacity
 void TypeMap.put(SqlDataType type, String value)
          set a default type name for specified type key
 String Dialect.getTypeString(SqlDataType type)
          Get the name of the database type associated with the given SqlDataType.
 String Dialect.getTypeString(SqlDataType type, int length, int precision)
          Get the name of the database type associated with the given SqlDataType.
protected  void Dialect.registerColumnType(SqlDataType type, int capacity, String name)
          Subclasses register a typename for the given type code and maximum column length.
protected  void Dialect.registerColumnType(SqlDataType type, String name)
          Subclasses register a typename for the given type code.
 

Uses of SqlDataType in net.sf.dewdrop.sqlml
 

Fields in net.sf.dewdrop.sqlml declared as SqlDataType
static SqlDataType SqlDataType.BOOLEAN
           
static SqlDataType SqlDataType.TINYINT
           
static SqlDataType SqlDataType.SMALLINT
           
static SqlDataType SqlDataType.INTEGER
           
static SqlDataType SqlDataType.BIGINT
           
static SqlDataType SqlDataType.FLOAT
           
static SqlDataType SqlDataType.DOUBLE
           
static SqlDataType SqlDataType.NUMERIC
           
static SqlDataType SqlDataType.CHAR
           
static SqlDataType SqlDataType.VARCHAR
           
static SqlDataType SqlDataType.CLOB
           
static SqlDataType SqlDataType.BIT
           
static SqlDataType SqlDataType.VARBINARY
           
static SqlDataType SqlDataType.BLOB
           
static SqlDataType SqlDataType.DATE
           
static SqlDataType SqlDataType.TIME
           
static SqlDataType SqlDataType.TIMESTAMP
           
protected  SqlDataType Column.type
           
 

Methods in net.sf.dewdrop.sqlml that return SqlDataType
static SqlDataType SqlDataType.valueOf(String value)
           
static SqlDataType SqlDataType.valueOf(int javaSqlType)
           
 SqlDataType Column.getType()
           
 

Methods in net.sf.dewdrop.sqlml with parameters of type SqlDataType
 void Column.setType(SqlDataType type)
           
 

Uses of SqlDataType in net.sf.dewdrop.util
 

Methods in net.sf.dewdrop.util with parameters of type SqlDataType
static Class JdbcUtils.toClass(SqlDataType dewdropSqlDataType)
           
static int JdbcUtils.toType(SqlDataType dewdropSqlDataType)