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 ValueClob
LobStorageMap. 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 ValueClob
LobStorageFrontend. createClob(java.io.Reader reader, long maxLength)
Create a CLOB object.ValueClob
LobStorageInterface. 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) ValueClob
ValueClob. convertPrecision(long precision)
Convert the precision to the requested value.private ValueClob
Value. convertToClob(TypeInfo targetType, int conversionMode, java.lang.Object column)
static ValueClob
ValueClob. createSmall(byte[] data)
Creates a small CLOB value that can be stored in the row directly.static ValueClob
ValueClob. createSmall(byte[] data, long charLength)
Creates a small CLOB value that can be stored in the row directly.static ValueClob
ValueClob. createSmall(java.lang.String string)
Creates a small CLOB value that can be stored in the row directly.static ValueClob
ValueClob. createTempClob(java.io.Reader in, long length, DataHandler handler)
Create a temporary CLOB value from a stream.private static ValueClob
ValueClob. 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 int
ValueClob. compare(ValueClob v1, ValueClob v2)
Compares two CLOB values directly.
-