Uses of Class
org.hibernate.engine.jdbc.AbstractLobCreator
-
Packages that use AbstractLobCreator Package Description org.hibernate.engine.jdbc Support for various aspects of JDBC interaction.org.hibernate.engine.jdbc.env.internal -
-
Uses of AbstractLobCreator in org.hibernate.engine.jdbc
Subclasses of AbstractLobCreator in org.hibernate.engine.jdbc Modifier and Type Class Description 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 AbstractLobCreator in org.hibernate.engine.jdbc.env.internal
Subclasses of AbstractLobCreator in org.hibernate.engine.jdbc.env.internal 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.
-