Uses of Class
org.h2.value.DataType
Packages that use DataType
Package
Description
This package contains the parser and the base classes for prepared SQL statements.
Contains high level classes of the database and classes that don't fit in another sub-package.
Data type and value implementations.
-
Uses of DataType in org.h2.command
Methods in org.h2.command with parameters of type DataTypeModifier and TypeMethodDescriptionprivate static DbExceptionParser.getInvalidPrecisionException(DataType dataType, long precision) -
Uses of DataType in org.h2.engine
Fields in org.h2.engine with type parameters of type DataTypeModifier and TypeFieldDescriptionMode.typeByNameMapCustom mappings from type names to data types. -
Uses of DataType in org.h2.value
Fields in org.h2.value declared as DataTypeModifier and TypeFieldDescription(package private) static final DataType[]DataType.TYPES_BY_VALUE_TYPEMapping from Value type numbers to DataType.Fields in org.h2.value with type parameters of type DataTypeMethods in org.h2.value that return DataTypeModifier and TypeMethodDescriptionprivate static DataTypeDataType.createBinary(boolean fixedLength) static DataTypeDataType.createDate(int maxPrecision, int precision, 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, String prefix, String suffix) static DataTypeDataType.getDataType(int type) Get the data type object for the given value type.static DataTypeDataType.getTypeByName(String s, Mode mode) Get a data type object from a type name.Methods in org.h2.value with parameters of type DataType