Uses of Class
org.h2.value.ValueLob

Packages that use ValueLob
org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package. 
org.h2.value Data type and value implementations. 
 

Uses of ValueLob in org.h2.engine
 

Methods in org.h2.engine with parameters of type ValueLob
 void Session.unlinkAtCommit(ValueLob v)
          Remember that the given LOB value must be un-linked (disconnected from the table) at commit.
 

Uses of ValueLob in org.h2.value
 

Methods in org.h2.value that return ValueLob
 ValueLob ValueLob.copyToTemp()
          Create an independent copy of this temporary value.
static ValueLob ValueLob.createBlob(java.io.InputStream in, long length, DataHandler handler)
          Create a BLOB value from a stream.
static ValueLob ValueLob.createClob(java.io.Reader in, long length, DataHandler handler)
          Create a CLOB value from a stream.
static ValueLob ValueLob.createSmallLob(int type, byte[] small)
          Create a small lob using the given byte array.
static ValueLob ValueLob.open(int type, DataHandler handler, int tableId, int objectId, long precision, boolean compression)
          Create a LOB value with the given parameters.