java.lang.Object | |
↳ | org.hibernate.engine.jdbc.BlobProxy |
Manages aspects of proxying Blob Blobs for non-contextual creation, including proxy creation and handling proxy invocations.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Generates a BlobImpl proxy using a given number of bytes from an InputStream.
| |||||||||||
Generates a BlobImpl proxy using byte data.
| |||||||||||
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Generates a BlobImpl proxy using a given number of bytes from an InputStream.
stream | The input stream of bytes to be created as a Blob. |
---|---|
length | The number of bytes from stream to be written to the Blob. |
Generates a BlobImpl proxy using byte data.
bytes | The data to be created as a Blob. |
---|
UnsupportedOperationException | if any methods other than length()
or getBinaryStream() are invoked.
|
---|---|
Throwable |