Uses of Interface
org.hibernate.jdbc.Work
-
Packages that use Work Package Description org.hibernate This package defines the central Hibernate APIs, beginning withSessionFactory, which represents an instance of Hibernate at runtime and is the source of new instances ofSessionandStatelessSession, the most important APIs exposing persistence-related operations for entities.org.hibernate.dialect.temptable Support for temporary tables.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.jdbc Defines the notion of a unit of JDBC work that may be executed by the session at the request of the client.org.hibernate.testing.junit4 -
-
Uses of Work in org.hibernate
Methods in org.hibernate with parameters of type Work Modifier and Type Method Description default voidSharedSessionContract. doWork(Work work)Perform work using theConnectionunderlying by this session. -
Uses of Work in org.hibernate.dialect.temptable
Classes in org.hibernate.dialect.temptable that implement Work Modifier and Type Class Description static classTemporaryTableHelper.TemporaryTableCreationWorkstatic classTemporaryTableHelper.TemporaryTableDropWork -
Uses of Work in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi with parameters of type Work Modifier and Type Method Description voidSessionDelegatorBaseImpl. doWork(Work work)voidSessionLazyDelegator. doWork(Work work)voidSharedSessionDelegatorBaseImpl. doWork(Work work) -
Uses of Work in org.hibernate.internal
Methods in org.hibernate.internal with parameters of type Work Modifier and Type Method Description voidAbstractSharedSessionContract. doWork(Work work) -
Uses of Work in org.hibernate.jdbc
Classes in org.hibernate.jdbc that implement Work Modifier and Type Class Description classAbstractWorkAn abstract implementation ofWorkthat accepts aWorkExecutorvisitor for executing a discrete piece of work.Methods in org.hibernate.jdbc with parameters of type Work Modifier and Type Method Description TWorkExecutor. executeWork(Work work, Connection connection)Execute the discrete work encapsulated by aWorkinstance using the supplied connection. -
Uses of Work in org.hibernate.testing.junit4
Classes in org.hibernate.testing.junit4 that implement Work Modifier and Type Class Description static classBaseCoreFunctionalTestCase.RollbackWorkstatic classBaseNonConfigCoreFunctionalTestCase.RollbackWork
-