Methods Summary |
---|
public java.io.InputStream | getBinaryStream()
return getWrappedBlob().getBinaryStream();
|
public byte[] | getBytes(long pos, int length)
return getWrappedBlob().getBytes(pos, length);
|
public java.sql.Blob | getWrappedBlob()
if ( blob==null ) {
throw new IllegalStateException("Blobs may not be accessed after serialization");
}
else {
return blob;
}
|
public long | length()
return getWrappedBlob().length();
|
public long | position(byte[] pattern, long start)
return getWrappedBlob().position(pattern, start);
|
public long | position(java.sql.Blob pattern, long start)
return getWrappedBlob().position(pattern, start);
|
public java.io.OutputStream | setBinaryStream(long pos)
return getWrappedBlob().setBinaryStream(pos);
|
public int | setBytes(long pos, byte[] bytes)
return getWrappedBlob().setBytes(pos, bytes);
|
public int | setBytes(long pos, byte[] bytes, int offset, int len)
return getWrappedBlob().setBytes(pos, bytes, offset, len);
|
public void | truncate(long len)
getWrappedBlob().truncate(len);
|