Uses of Class
org.dbunit.dataset.datatype.DataType

Packages that use DataType
org.dbunit.assertion   
org.dbunit.database.statement   
org.dbunit.dataset   
org.dbunit.dataset.datatype   
org.dbunit.ext.db2   
org.dbunit.ext.h2   
org.dbunit.ext.hsqldb   
org.dbunit.ext.mckoi   
org.dbunit.ext.mssql   
org.dbunit.ext.mysql   
org.dbunit.ext.netezza   
org.dbunit.ext.oracle   
org.dbunit.ext.postgresql   
 

Uses of DataType in org.dbunit.assertion
 

Methods in org.dbunit.assertion that return DataType
 DataType DbUnitAssert.ComparisonColumn.getDataType()
           
 

Uses of DataType in org.dbunit.database.statement
 

Methods in org.dbunit.database.statement with parameters of type DataType
 void SimplePreparedStatement.addValue(java.lang.Object value, DataType dataType)
           
 void PreparedBatchStatement.addValue(java.lang.Object value, DataType dataType)
           
 void IPreparedBatchStatement.addValue(java.lang.Object value, DataType dataType)
           
 void BatchStatementDecorator.addValue(java.lang.Object value, DataType dataType)
           
 void AutomaticPreparedBatchStatement.addValue(java.lang.Object value, DataType dataType)
           
 

Uses of DataType in org.dbunit.dataset
 

Methods in org.dbunit.dataset that return DataType
 DataType Column.getDataType()
          Returns this column data type.
 

Methods in org.dbunit.dataset with parameters of type DataType
static java.lang.String DataSetUtils.getSqlValueString(java.lang.Object value, DataType dataType)
          Returns the specified value as a string to be use in an SQL Statement.
 

Constructors in org.dbunit.dataset with parameters of type DataType
Column(java.lang.String columnName, DataType dataType)
          Creates a Column object.
Column(java.lang.String columnName, DataType dataType, Column.Nullable nullable)
          Creates a Column object.
Column(java.lang.String columnName, DataType dataType, java.lang.String sqlTypeName, Column.Nullable nullable)
          Creates a Column object.
Column(java.lang.String columnName, DataType dataType, java.lang.String sqlTypeName, Column.Nullable nullable, java.lang.String defaultValue)
          Creates a Column object.
Column(java.lang.String columnName, DataType dataType, java.lang.String sqlTypeName, Column.Nullable nullable, java.lang.String defaultValue, java.lang.String remarks, Column.AutoIncrement autoIncrement)
          Creates a Column object.
 

Uses of DataType in org.dbunit.dataset.datatype
 

Subclasses of DataType in org.dbunit.dataset.datatype
 class AbstractDataType
          Abstract data type implementation that provides generic methods that are appropriate for most data type implementations.
 class BigIntegerDataType
          Inserts and reads BigInteger values into/from a database.
 class BinaryStreamDataType
           
 class BitDataType
           
 class BlobDataType
           
 class BooleanDataType
           
 class BytesDataType
           
 class ClobDataType
           
 class DateDataType
           
 class DoubleDataType
           
 class FloatDataType
           
 class IntegerDataType
           
 class LongDataType
           
 class NumberDataType
           
 class NumberTolerantDataType
          Extended version of the NumberDataType.
 class StringDataType
           
 class StringIgnoreCaseDataType
          String data type that ignore case when comparing String values.
 class TimeDataType
          Data type that maps a SQL Types.TIME object to a java object.
 class TimestampDataType
           
 class UnknownDataType
           
 

Fields in org.dbunit.dataset.datatype declared as DataType
static DataType DataType.BIGINT
           
static DataType DataType.BIGINT_AUX_LONG
          Auxiliary for the BIGINT type using a long.
static DataType DataType.BINARY
           
static DataType DataType.BIT
           
static DataType DataType.BLOB
           
static DataType DataType.BOOLEAN
           
static DataType DataType.CHAR
           
static DataType DataType.CLOB
           
static DataType DataType.DATE
           
static DataType DataType.DECIMAL
           
static DataType DataType.DOUBLE
           
static DataType DataType.FLOAT
           
static DataType DataType.INTEGER
           
static DataType DataType.LONGNVARCHAR
           
static DataType DataType.LONGVARBINARY
           
static DataType DataType.LONGVARCHAR
           
static DataType DataType.NCHAR
           
static DataType DataType.NUMERIC
           
static DataType DataType.NVARCHAR
           
static DataType DataType.REAL
           
static DataType DataType.SMALLINT
           
static DataType DataType.TIME
           
static DataType DataType.TIMESTAMP
           
static DataType DataType.TINYINT
           
static DataType DataType.UNKNOWN
           
static DataType DataType.VARBINARY
           
static DataType DataType.VARCHAR
           
 

Methods in org.dbunit.dataset.datatype that return DataType
 DataType IDataTypeFactory.createDataType(int sqlType, java.lang.String sqlTypeName)
          Returns the DataType object that corresponds to the specified Types.
 DataType DefaultDataTypeFactory.createDataType(int sqlType, java.lang.String sqlTypeName)
           
 DataType IDataTypeFactory.createDataType(int sqlType, java.lang.String sqlTypeName, java.lang.String tableName, java.lang.String columnName)
          Returns the DataType object that corresponds to the specified Types and regards the given tableName and columnName.
 DataType DefaultDataTypeFactory.createDataType(int sqlType, java.lang.String sqlTypeName, java.lang.String tableName, java.lang.String columnName)
           
static DataType DataType.forObject(java.lang.Object value)
          Returns the DataType corresponding to the specified value runtime class.
static DataType DataType.forSqlType(int sqlType)
          Returns the DataType corresponding to the specified Sql type.
static DataType DataType.forSqlTypeName(java.lang.String sqlTypeName)
          Deprecated. Should not be used anymore
 

Constructors in org.dbunit.dataset.datatype with parameters of type DataType
TypeCastException(java.lang.Object value, DataType dataType)
           
TypeCastException(java.lang.Object value, DataType dataType, java.lang.Throwable e)
           
 

Uses of DataType in org.dbunit.ext.db2
 

Methods in org.dbunit.ext.db2 that return DataType
 DataType Db2DataTypeFactory.createDataType(int sqlType, java.lang.String sqlTypeName)
           
 

Uses of DataType in org.dbunit.ext.h2
 

Methods in org.dbunit.ext.h2 that return DataType
 DataType H2DataTypeFactory.createDataType(int sqlType, java.lang.String sqlTypeName)
           
 

Uses of DataType in org.dbunit.ext.hsqldb
 

Methods in org.dbunit.ext.hsqldb that return DataType
 DataType HsqldbDataTypeFactory.createDataType(int sqlType, java.lang.String sqlTypeName)
           
 

Uses of DataType in org.dbunit.ext.mckoi
 

Methods in org.dbunit.ext.mckoi that return DataType
 DataType MckoiDataTypeFactory.createDataType(int sqlType, java.lang.String sqlTypeName)
           
 

Uses of DataType in org.dbunit.ext.mssql
 

Methods in org.dbunit.ext.mssql that return DataType
 DataType MsSqlDataTypeFactory.createDataType(int sqlType, java.lang.String sqlTypeName)
           
 

Uses of DataType in org.dbunit.ext.mysql
 

Methods in org.dbunit.ext.mysql that return DataType
 DataType MySqlDataTypeFactory.createDataType(int sqlType, java.lang.String sqlTypeName)
           
 

Uses of DataType in org.dbunit.ext.netezza
 

Methods in org.dbunit.ext.netezza that return DataType
 DataType NetezzaDataTypeFactory.createDataType(int sqlType, java.lang.String sqlTypeName)
           
 

Uses of DataType in org.dbunit.ext.oracle
 

Subclasses of DataType in org.dbunit.ext.oracle
 class OracleBlobDataType
           
 class OracleClobDataType
           
 class OracleNClobDataType
          NCLOB handler
 class OracleSdoGeometryDataType
          This class implements DataType for Oracle SDO_GEOMETRY type used in Oracle Spatial.
 class OracleXMLTypeDataType
          TODO UnitTests are completely missing
 

Fields in org.dbunit.ext.oracle declared as DataType
protected static DataType Oracle10DataTypeFactory.BLOB_AS_STREAM
           
protected static DataType Oracle10DataTypeFactory.CLOB_AS_STRING
           
static DataType OracleDataTypeFactory.LONG_RAW
           
static DataType OracleDataTypeFactory.ORACLE_BLOB
           
static DataType OracleDataTypeFactory.ORACLE_CLOB
           
static DataType OracleDataTypeFactory.ORACLE_NCLOB
           
static DataType OracleDataTypeFactory.ORACLE_SDO_GEOMETRY_TYPE
           
static DataType OracleDataTypeFactory.ORACLE_XMLTYPE
           
static DataType OracleDataTypeFactory.ROWID_TYPE
           
 

Methods in org.dbunit.ext.oracle that return DataType
 DataType OracleDataTypeFactory.createDataType(int sqlType, java.lang.String sqlTypeName)
           
 DataType Oracle10DataTypeFactory.createDataType(int sqlType, java.lang.String sqlTypeName)
           
 

Uses of DataType in org.dbunit.ext.postgresql
 

Subclasses of DataType in org.dbunit.ext.postgresql
 class GenericEnumType
          Adapter to handle conversion between Postgresql native Enum type and Strings.
 class InetType
          Adapter to handle conversion between Postgresql native inet type and Strings.
 class IntervalType
          Adapter to handle conversion between Postgresql native Interval type and Strings.
 class UuidType
          Adapter to handle conversion between Postgresql native UUID type and Strings.
 

Methods in org.dbunit.ext.postgresql that return DataType
 DataType PostgresqlDataTypeFactory.createDataType(int sqlType, java.lang.String sqlTypeName)
           
 



Copyright © 2002-2010. All Rights Reserved.