Uses of Class
org.h2.value.ValueClob
-
Packages that use ValueClob Package Description org.h2.mvstore.db Helper classes to use the MVStore in the H2 database.org.h2.store Storage abstractions, such as a file with a cache, or a class to convert values to a byte array and vice versa.org.h2.value Data type and value implementations. -
-
Uses of ValueClob in org.h2.mvstore.db
Methods in org.h2.mvstore.db that return ValueClob Modifier and Type Method Description ValueClobLobStorageMap. createClob(java.io.Reader reader, long maxLength) -
Uses of ValueClob in org.h2.store
Methods in org.h2.store that return ValueClob Modifier and Type Method Description ValueClobLobStorageFrontend. createClob(java.io.Reader reader, long maxLength)Create a CLOB object.ValueClobLobStorageInterface. createClob(java.io.Reader reader, long maxLength)Create a CLOB object. -
Uses of ValueClob in org.h2.value
Methods in org.h2.value that return ValueClob Modifier and Type Method Description (package private) ValueClobValueClob. convertPrecision(long precision)Convert the precision to the requested value.private ValueClobValue. convertToClob(TypeInfo targetType, int conversionMode, java.lang.Object column)static ValueClobValueClob. createSmall(byte[] data)Creates a small CLOB value that can be stored in the row directly.static ValueClobValueClob. createSmall(byte[] data, long charLength)Creates a small CLOB value that can be stored in the row directly.static ValueClobValueClob. createSmall(java.lang.String string)Creates a small CLOB value that can be stored in the row directly.static ValueClobValueClob. createTempClob(java.io.Reader in, long length, DataHandler handler)Create a temporary CLOB value from a stream.private static ValueClobValueClob. createTemporary(DataHandler handler, java.io.Reader in, long remaining)Create a CLOB in a temporary file.Methods in org.h2.value with parameters of type ValueClob Modifier and Type Method Description private static intValueClob. compare(ValueClob v1, ValueClob v2)Compares two CLOB values directly.
-