Uses of Class
org.h2.value.ValueLobDb

Packages that use ValueLobDb
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 ValueLobDb in org.h2.store
 

Methods in org.h2.store that return ValueLobDb
 ValueLobDb LobStorage.copyLob(int type, long oldLobId, int tableId, long length)
          Copy a lob.
 

Uses of ValueLobDb in org.h2.value
 

Methods in org.h2.value that return ValueLobDb
 ValueLobDb ValueLobDb.copyToTemp()
          Create an independent copy of this temporary value.
static ValueLobDb ValueLobDb.create(int type, LobStorage lobStorage, java.lang.String fileName, int tableId, long id, long precision)
          Create a LOB value.
static ValueLobDb ValueLobDb.createSmallLob(int type, byte[] small, long precision)
          Create a small lob using the given byte array.
static ValueLobDb ValueLobDb.createTempBlob(java.io.InputStream in, long length, DataHandler handler)
          Create a temporary BLOB value from a stream.
static ValueLobDb ValueLobDb.createTempClob(java.io.Reader in, long length, DataHandler handler)
          Create a temporary CLOB value from a stream.