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 ValueBlobLobStorageMap. createBlob(java.io.InputStream in)ValueBlobLobStorageMap. 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 ValueBlobLobStorageFrontend. createBlob(java.io.InputStream in, long maxLength)ValueBlobLobStorageInterface. 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) ValueBlobValueBlob. convertPrecision(long precision)Convert the precision to the requested value.private ValueBlobValue. convertToBlob(TypeInfo targetType, int conversionMode, java.lang.Object column)static ValueBlobValueBlob. createSmall(byte[] data)Creates a small BLOB value that can be stored in the row directly.static ValueBlobValueBlob. createTempBlob(java.io.InputStream in, long length, DataHandler handler)Create a temporary BLOB value from a stream.private static ValueBlobValueBlob. 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 intValueBlob. compare(ValueBlob v1, ValueBlob v2)Compares two BLOB values directly.
-