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 DbExceptionParser. 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. typeByNameMapCustom 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_TYPEMapping 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_NAMEThe map of types.Methods in org.h2.value that return DataType Modifier and Type Method Description private static DataTypeDataType. createBinary(boolean fixedLength)static DataTypeDataType. createDate(int maxPrecision, int precision, java.lang.String prefix, boolean supportsScale, int scale, int maxScale)Create a date-time data type.private static DataTypeDataType. createGeometry()private static DataTypeDataType. createLob(boolean clob)static DataTypeDataType. createNumeric(int precision, int scale)Create a numeric data type without parameters.private static DataTypeDataType. createString(boolean caseSensitive, boolean fixedLength)private static DataTypeDataType. createString(boolean caseSensitive, boolean fixedLength, java.lang.String prefix, java.lang.String suffix)static DataTypeDataType. getDataType(int type)Get the data type object for the given value type.static DataTypeDataType. 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 voidDataType. add(int type, int sqlType, DataType dataType, java.lang.String... names)
-