Uses of Class
de.fuberlin.wiwiss.d2rq.sql.types.DataType

Packages that use DataType
de.fuberlin.wiwiss.d2rq.dbschema JDBC-based database schema inspection code. 
de.fuberlin.wiwiss.d2rq.sql SQL query and result processing code. 
de.fuberlin.wiwiss.d2rq.sql.types   
de.fuberlin.wiwiss.d2rq.sql.vendor   
 

Uses of DataType in de.fuberlin.wiwiss.d2rq.dbschema
 

Methods in de.fuberlin.wiwiss.d2rq.dbschema that return DataType
 DataType DatabaseSchemaInspector.columnType(Attribute column)
           
 

Uses of DataType in de.fuberlin.wiwiss.d2rq.sql
 

Methods in de.fuberlin.wiwiss.d2rq.sql that return DataType
 DataType ConnectedDB.columnType(Attribute column)
          Returns a column's datatype.
 

Uses of DataType in de.fuberlin.wiwiss.d2rq.sql.types
 

Subclasses of DataType in de.fuberlin.wiwiss.d2rq.sql.types
 class SQLApproximateNumeric
           
 class SQLBinary
           
 class SQLBit
           
 class SQLBoolean
           
 class SQLCharacterString
           
 class SQLDate
           
 class SQLExactNumeric
           
 class SQLInterval
           
 class SQLTime
           
 class SQLTimestamp
           
 class UnsupportedDataType
           
 

Methods in de.fuberlin.wiwiss.d2rq.sql.types that return DataType
 DataType DataType.GenericType.dataTypeFor(Vendor vendor)
           
 

Uses of DataType in de.fuberlin.wiwiss.d2rq.sql.vendor
 

Subclasses of DataType in de.fuberlin.wiwiss.d2rq.sql.vendor
static class HSQLDB.HSQLDBCompatibilityDoubleDataType
           
static class MySQL.MySQLCompatibilityBitDataType
           
static class MySQL.MySQLCompatibilityDateDataType
           
static class MySQL.MySQLCompatibilityTimeDataType
           
static class MySQL.MySQLCompatibilityTimestampDataType
           
static class Oracle.OracleCompatibilityTimeZoneDataType
           
static class Oracle.OracleCompatibilityTimeZoneLocalDataType
          getString() doesn't really work for TIMESTAMP WITH LOCAL TIME ZONE, we have to use getTimestamp() and format the resulting Timestamp object according to the session's time zone.
 

Methods in de.fuberlin.wiwiss.d2rq.sql.vendor that return DataType
 DataType Vendor.getDataType(int jdbcType, String name, int size)
          Returns a DataType corresponding to a JDBC type.
 DataType SQLServer.getDataType(int jdbcType, String name, int size)
           
 DataType SQL92.getDataType(int jdbcType, String name, int size)
           
 DataType PostgreSQL.getDataType(int jdbcType, String name, int size)
           
 DataType Oracle.getDataType(int jdbcType, String name, int size)
           
 DataType MySQL.getDataType(int jdbcType, String name, int size)
           
 DataType HSQLDB.getDataType(int jdbcType, String name, int size)