Uses of Class
org.h2.value.ValueLob

Packages that use ValueLob
org.h2.value Data type and value implementations. 
 

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.