Uses of Class
org.h2.value.DataType
-
Packages that use DataType Package Description org.h2.command This package contains the parser and the base classes for prepared SQL statements.org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package.org.h2.value Data type and value implementations. -
-
Uses of DataType in org.h2.command
Methods in org.h2.command with parameters of type DataType Modifier and Type Method Description private static DbException
Parser. getInvalidPrecisionException(DataType dataType, long precision)
-
Uses of DataType in org.h2.engine
Fields in org.h2.engine with type parameters of type DataType Modifier and Type Field Description java.util.HashMap<java.lang.String,DataType>
Mode. typeByNameMap
Custom mappings from type names to data types. -
Uses of DataType in org.h2.value
Fields in org.h2.value declared as DataType Modifier and Type Field Description (package private) static DataType[]
DataType. TYPES_BY_VALUE_TYPE
Mapping from Value type numbers to DataType.Fields in org.h2.value with type parameters of type DataType Modifier and Type Field Description private static java.util.HashMap<java.lang.String,DataType>
DataType. TYPES_BY_NAME
The map of types.Methods in org.h2.value that return DataType Modifier and Type Method Description private static DataType
DataType. createBinary(boolean fixedLength)
static DataType
DataType. createDate(int maxPrecision, int precision, java.lang.String prefix, boolean supportsScale, int scale, int maxScale)
Create a date-time data type.private static DataType
DataType. createGeometry()
private static DataType
DataType. createLob(boolean clob)
static DataType
DataType. createNumeric(int precision, int scale)
Create a numeric data type without parameters.private static DataType
DataType. createString(boolean caseSensitive, boolean fixedLength)
private static DataType
DataType. createString(boolean caseSensitive, boolean fixedLength, java.lang.String prefix, java.lang.String suffix)
static DataType
DataType. getDataType(int type)
Get the data type object for the given value type.static DataType
DataType. getTypeByName(java.lang.String s, Mode mode)
Get a data type object from a type name.Methods in org.h2.value with parameters of type DataType Modifier and Type Method Description private static void
DataType. add(int type, int sqlType, DataType dataType, java.lang.String... names)
-