Uses of Class
org.h2.value.ValueBlob
-
Packages that use ValueBlob 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 ValueBlob in org.h2.mvstore.db
Methods in org.h2.mvstore.db that return ValueBlob Modifier and Type Method Description private ValueBlob
LobStorageMap. createBlob(java.io.InputStream in)
ValueBlob
LobStorageMap. createBlob(java.io.InputStream in, long maxLength)
-
Uses of ValueBlob in org.h2.store
Methods in org.h2.store that return ValueBlob Modifier and Type Method Description ValueBlob
LobStorageFrontend. createBlob(java.io.InputStream in, long maxLength)
ValueBlob
LobStorageInterface. createBlob(java.io.InputStream in, long maxLength)
Create a BLOB object. -
Uses of ValueBlob in org.h2.value
Methods in org.h2.value that return ValueBlob Modifier and Type Method Description (package private) ValueBlob
ValueBlob. convertPrecision(long precision)
Convert the precision to the requested value.private ValueBlob
Value. convertToBlob(TypeInfo targetType, int conversionMode, java.lang.Object column)
static ValueBlob
ValueBlob. createSmall(byte[] data)
Creates a small BLOB value that can be stored in the row directly.static ValueBlob
ValueBlob. createTempBlob(java.io.InputStream in, long length, DataHandler handler)
Create a temporary BLOB value from a stream.private static ValueBlob
ValueBlob. createTemporary(DataHandler handler, byte[] buff, int len, java.io.InputStream in, long remaining)
Create a BLOB in a temporary file.Methods in org.h2.value with parameters of type ValueBlob Modifier and Type Method Description private static int
ValueBlob. compare(ValueBlob v1, ValueBlob v2)
Compares two BLOB values directly.
-