Uses of Interface
org.hibernate.engine.jdbc.LobCreator
-
Packages that use LobCreator Package Description org.hibernate.engine.jdbc Support for various aspects of JDBC interaction.org.hibernate.engine.jdbc.env.internal org.hibernate.engine.jdbc.env.spi org.hibernate.engine.jdbc.internal Internals for supporting various aspects of JDBC interactionorg.hibernate.engine.jdbc.spi SPI contracts supporting various aspects of JDBC interaction.org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate.org.hibernate.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
.org.hibernate.persister.entity This package abstracts persistence mechanisms for entities.org.hibernate.testing.boot org.hibernate.type.descriptor Contracts for reading and writing values to and from JDBC. -
-
Uses of LobCreator in org.hibernate.engine.jdbc
Classes in org.hibernate.engine.jdbc that implement LobCreator Modifier and Type Class Description class
AbstractLobCreator
Convenient base class for proxy-based LobCreator for handling wrapping.class
NonContextualLobCreator
LobCreator
implementation using non-contextual or local creation, meaning that we generate the LOB references ourselves as opposed to delegating to the JDBCConnection
. -
Uses of LobCreator in org.hibernate.engine.jdbc.env.internal
Classes in org.hibernate.engine.jdbc.env.internal that implement LobCreator Modifier and Type Class Description class
BlobAndClobCreator
LobCreator which can useConnection.createBlob()
andConnection.createClob()
, butNClob
references are created locally.class
StandardLobCreator
LobCreator implementation using Connection.createBlob(), Connection.createClob() and Connection.createNClob() to create the LOB references.Methods in org.hibernate.engine.jdbc.env.internal that return LobCreator Modifier and Type Method Description LobCreator
LobCreatorBuilderImpl. buildLobCreator(LobCreationContext lobCreationContext)
Build a LobCreator using the given context -
Uses of LobCreator in org.hibernate.engine.jdbc.env.spi
Methods in org.hibernate.engine.jdbc.env.spi that return LobCreator Modifier and Type Method Description LobCreator
LobCreatorBuilder. buildLobCreator(LobCreationContext lobCreationContext)
-
Uses of LobCreator in org.hibernate.engine.jdbc.internal
Methods in org.hibernate.engine.jdbc.internal that return LobCreator Modifier and Type Method Description LobCreator
JdbcServicesImpl. getLobCreator(LobCreationContext lobCreationContext)
-
Uses of LobCreator in org.hibernate.engine.jdbc.spi
Methods in org.hibernate.engine.jdbc.spi that return LobCreator Modifier and Type Method Description LobCreator
JdbcServices. getLobCreator(LobCreationContext lobCreationContext)
Create an instance of aLobCreator
appropriate for the current environment, mainly meant to account for variance between: JDBC 4 (<= JDK 1.6) and JDBC 3 (>= JDK 1.5). -
Uses of LobCreator in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return LobCreator Modifier and Type Method Description LobCreator
AbstractDelegatingWrapperOptions. getLobCreator()
LobCreator
SessionDelegatorBaseImpl. getLobCreator()
LobCreator
SharedSessionDelegatorBaseImpl. getLobCreator()
-
Uses of LobCreator in org.hibernate.internal
Methods in org.hibernate.internal that return LobCreator Modifier and Type Method Description LobCreator
AbstractSharedSessionContract. getLobCreator()
-
Uses of LobCreator in org.hibernate.persister.entity
Methods in org.hibernate.persister.entity that return LobCreator Modifier and Type Method Description LobCreator
SessionFactoryBasedWrapperOptions. getLobCreator()
-
Uses of LobCreator in org.hibernate.testing.boot
Methods in org.hibernate.testing.boot that return LobCreator Modifier and Type Method Description LobCreator
BasicTestingJdbcServiceImpl. getLobCreator(LobCreationContext lobCreationContext)
-
Uses of LobCreator in org.hibernate.type.descriptor
Methods in org.hibernate.type.descriptor that return LobCreator Modifier and Type Method Description LobCreator
WrapperOptions. getLobCreator()
Obtain access to theLobCreator
.
-