Modifier and Type | Method and Description |
---|---|
DataType |
DbUnitAssert.ComparisonColumn.getDataType() |
Modifier and Type | Method and Description |
---|---|
void |
SimplePreparedStatement.addValue(Object value,
DataType dataType) |
void |
BatchStatementDecorator.addValue(Object value,
DataType dataType) |
void |
PreparedBatchStatement.addValue(Object value,
DataType dataType) |
void |
AutomaticPreparedBatchStatement.addValue(Object value,
DataType dataType) |
void |
IPreparedBatchStatement.addValue(Object value,
DataType dataType) |
Modifier and Type | Method and Description |
---|---|
DataType |
Column.getDataType()
Returns this column data type.
|
Modifier and Type | Method and Description |
---|---|
static String |
DataSetUtils.getSqlValueString(Object value,
DataType dataType)
Returns the specified value as a string to be use in an SQL Statement.
|
Constructor and Description |
---|
Column(String columnName,
DataType dataType)
Creates a Column object.
|
Column(String columnName,
DataType dataType,
Column.Nullable nullable)
Creates a Column object.
|
Column(String columnName,
DataType dataType,
String sqlTypeName,
Column.Nullable nullable)
Creates a Column object.
|
Column(String columnName,
DataType dataType,
String sqlTypeName,
Column.Nullable nullable,
String defaultValue)
Creates a Column object.
|
Column(String columnName,
DataType dataType,
String sqlTypeName,
Column.Nullable nullable,
String defaultValue,
String remarks,
Column.AutoIncrement autoIncrement)
Creates a Column object.
|
Modifier and Type | Class and Description |
---|---|
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 |
class |
UuidAwareBytesDataType
A datatype that is capable of storing UUIDs into BINARY fields (big-endian).
|
Modifier and Type | Field and Description |
---|---|
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 |
Modifier and Type | Method and Description |
---|---|
DataType |
IDataTypeFactory.createDataType(int sqlType,
String sqlTypeName)
Returns the DataType object that corresponds to the specified
Types . |
DataType |
DefaultDataTypeFactory.createDataType(int sqlType,
String sqlTypeName) |
DataType |
IDataTypeFactory.createDataType(int sqlType,
String sqlTypeName,
String tableName,
String columnName)
Returns the DataType object that corresponds to the specified
Types and regards the given tableName and columnName. |
DataType |
DefaultDataTypeFactory.createDataType(int sqlType,
String sqlTypeName,
String tableName,
String columnName) |
static DataType |
DataType.forObject(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(String sqlTypeName)
Deprecated.
Should not be used anymore
|
Constructor and Description |
---|
TypeCastException(Object value,
DataType dataType) |
TypeCastException(Object value,
DataType dataType,
Throwable e) |
Modifier and Type | Method and Description |
---|---|
DataType |
Db2DataTypeFactory.createDataType(int sqlType,
String sqlTypeName) |
Modifier and Type | Method and Description |
---|---|
DataType |
H2DataTypeFactory.createDataType(int sqlType,
String sqlTypeName) |
Modifier and Type | Method and Description |
---|---|
DataType |
HsqldbDataTypeFactory.createDataType(int sqlType,
String sqlTypeName) |
Modifier and Type | Method and Description |
---|---|
DataType |
MckoiDataTypeFactory.createDataType(int sqlType,
String sqlTypeName) |
Modifier and Type | Class and Description |
---|---|
class |
UniqueIdentifierType
UniqueIdentifierType provides support for the "uniqueidentifier" column in Microsoft SQLServer
databases. |
Modifier and Type | Method and Description |
---|---|
DataType |
MsSqlDataTypeFactory.createDataType(int sqlType,
String sqlTypeName) |
Modifier and Type | Method and Description |
---|---|
DataType |
MySqlDataTypeFactory.createDataType(int sqlType,
String sqlTypeName) |
Modifier and Type | Method and Description |
---|---|
DataType |
NetezzaDataTypeFactory.createDataType(int sqlType,
String sqlTypeName) |
Modifier and Type | Class and Description |
---|---|
class |
GenericEnumType
Adapter to handle conversion between Postgresql
native Enum type and Strings.
|
class |
GeometryType |
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.
|
Modifier and Type | Method and Description |
---|---|
DataType |
PostgresqlDataTypeFactory.createDataType(int sqlType,
String sqlTypeName) |
Copyright © 2002–2017. All rights reserved.