Uses of Interface
org.hibernate.jdbc.Work
Packages that use Work
Package
Description
This package defines the central Hibernate APIs, beginning with
SessionFactory
, which represents an instance of
Hibernate at runtime and is the source of new instances of
Session
and StatelessSession
,
the most important APIs exposing persistence-related operations for
entities.Support for temporary tables.
This package defines some central internal SPI abstractions
used throughout the implementation of Hibernate.
A small API allowing the client of a Hibernate session to interact directly
with JDBC, using the same connection and transaction obtained by the session.
-
Uses of Work in org.hibernate
Methods in org.hibernate with parameters of type WorkModifier and TypeMethodDescriptionvoid
Perform work using theConnection
underlying by this session. -
Uses of Work in org.hibernate.dialect.temptable
Classes in org.hibernate.dialect.temptable that implement Work -
Uses of Work in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi with parameters of type Work -
Uses of Work in org.hibernate.jdbc
Classes in org.hibernate.jdbc that implement WorkModifier and TypeClassDescriptionclass
An abstract implementation ofWork
that accepts aWorkExecutor
visitor for executing a discrete piece of work.Methods in org.hibernate.jdbc with parameters of type WorkModifier and TypeMethodDescription@Nullable T
WorkExecutor.executeWork
(Work work, Connection connection) Execute the discrete work encapsulated by aWork
instance using the supplied connection.