Package org.hibernate.engine.jdbc
Interface LobCreator
-
- All Known Implementing Classes:
AbstractLobCreator,BlobAndClobCreator,NonContextualLobCreator,StandardLobCreator
public interface LobCreatorContract for creating various LOB references.- See Also:
WrapperOptions.getLobCreator(),JdbcServices.getLobCreator(LobCreationContext),LobHelper- API Note:
- This class is not intended to be called directly by the application program.
Instead, use
Session.getLobHelper().
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BlobcreateBlob(byte[] bytes)Create a BLOB reference encapsulating the given byte array.BlobcreateBlob(InputStream stream, long length)Create a BLOB reference encapsulating the given binary stream.ClobcreateClob(Reader reader, long length)Create a CLOB reference encapsulating the given character data.ClobcreateClob(String string)Create a CLOB reference encapsulating the given String data.NClobcreateNClob(Reader reader, long length)Create a NCLOB reference encapsulating the given character data.NClobcreateNClob(String string)Create a NCLOB reference encapsulating the given String data.Blobwrap(Blob blob)Wrap the given blob in a serializable wrapper.Clobwrap(Clob clob)Wrap the given clob in a serializable wrapper.NClobwrap(NClob nclob)Wrap the given nclob in a serializable wrapper.
-
-
-
Method Detail
-
wrap
Blob wrap(Blob blob)
Wrap the given blob in a serializable wrapper.- Parameters:
blob- The blob to be wrapped.- Returns:
- The wrapped blob which will be castable to
Blobas well asWrappedBlob.
-
wrap
Clob wrap(Clob clob)
Wrap the given clob in a serializable wrapper.- Parameters:
clob- The clob to be wrapped.- Returns:
- The wrapped clob which will be castable to
Clobas well asWrappedClob.
-
wrap
NClob wrap(NClob nclob)
Wrap the given nclob in a serializable wrapper.- Parameters:
nclob- The nclob to be wrapped.- Returns:
- The wrapped nclob which will be castable to
NClobas well asWrappedNClob.
-
createBlob
Blob createBlob(byte[] bytes)
Create a BLOB reference encapsulating the given byte array.- Parameters:
bytes- The byte array to wrap as a blob.- Returns:
- The created blob, castable to
Blobas well asBlobImplementer
-
createBlob
Blob createBlob(InputStream stream, long length)
Create a BLOB reference encapsulating the given binary stream.- Parameters:
stream- The binary stream to wrap as a blob.length- The length of the stream.- Returns:
- The created blob, castable to
Blobas well asBlobImplementer
-
createClob
Clob createClob(String string)
Create a CLOB reference encapsulating the given String data.- Parameters:
string- The String to wrap as a clob.- Returns:
- The created clob, castable to
Clobas well asClobImplementer
-
createClob
Clob createClob(Reader reader, long length)
Create a CLOB reference encapsulating the given character data.- Parameters:
reader- The character data reader.length- The length of the reader data.- Returns:
- The created clob, castable to
Clobas well asClobImplementer
-
createNClob
NClob createNClob(String string)
Create a NCLOB reference encapsulating the given String data.- Parameters:
string- The String to wrap as a NCLOB.- Returns:
- The created NCLOB, castable as
Clobas well asNClobImplementer. In JDK 1.6 environments, also castable to java.sql.NClob
-
createNClob
NClob createNClob(Reader reader, long length)
Create a NCLOB reference encapsulating the given character data.- Parameters:
reader- The character data reader.length- The length of the reader data.- Returns:
- The created NCLOB, castable as
Clobas well asNClobImplementer. In JDK 1.6 environments, also castable to java.sql.NClob
-
-