Uses of Interface
org.hibernate.engine.jdbc.spi.JdbcServices
-
Packages that use JdbcServices Package Description org.hibernate.engine.jdbc.cursor.internal Internals for JDBC REF_CURSOR support.org.hibernate.engine.jdbc.internal Internals for supporting various aspects of JDBC interactionorg.hibernate.engine.jdbc.mutation.internal 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.metamodel.spi An SPI supporting custom instantiation of entity instances and embeddable objects.org.hibernate.resource.jdbc.internal Implementation of the SPI for managing JDBC connections and other heavyweight resources.org.hibernate.resource.jdbc.spi An SPI for managing JDBC connections and other heavyweight resources, based around the idea of a "JDBC session".org.hibernate.sql.ast.spi Package defining support for creating and consuming a SQL AST.org.hibernate.sql.model.ast.builder Support for buildingTableMutation
references for persisting entity mutation eventsorg.hibernate.testing.boot -
-
Uses of JdbcServices in org.hibernate.engine.jdbc.cursor.internal
Methods in org.hibernate.engine.jdbc.cursor.internal with parameters of type JdbcServices Modifier and Type Method Description void
StandardRefCursorSupport. injectJdbcServices(JdbcServices jdbcServices)
Hook for service registry to be able to inject JdbcServices -
Uses of JdbcServices in org.hibernate.engine.jdbc.internal
Classes in org.hibernate.engine.jdbc.internal that implement JdbcServices Modifier and Type Class Description class
JdbcServicesImpl
Standard implementation of theJdbcServices
contractMethods in org.hibernate.engine.jdbc.internal that return JdbcServices Modifier and Type Method Description JdbcServices
JdbcServicesInitiator. initiateService(Map<String,Object> configurationValues, ServiceRegistryImplementor registry)
Methods in org.hibernate.engine.jdbc.internal that return types with arguments of type JdbcServices Modifier and Type Method Description Class<JdbcServices>
JdbcServicesInitiator. getServiceInitiated()
Constructors in org.hibernate.engine.jdbc.internal with parameters of type JdbcServices Constructor Description JdbcCoordinatorImpl(Connection userSuppliedConnection, JdbcSessionOwner owner, JdbcServices jdbcServices)
Constructs aJdbcCoordinatorImpl
MutationStatementPreparerImpl(JdbcCoordinatorImpl jdbcCoordinator, JdbcServices jdbcServices)
ResultSetReturnImpl(JdbcCoordinator jdbcCoordinator, JdbcServices jdbcServices)
Constructs a ResultSetReturnImpl -
Uses of JdbcServices in org.hibernate.engine.jdbc.mutation.internal
Constructors in org.hibernate.engine.jdbc.mutation.internal with parameters of type JdbcServices Constructor Description PreparedStatementDetailsStandard(PreparableMutationOperation tableMutation, String sql, Supplier<PreparedStatement> jdbcStatementCreator, Expectation expectation, JdbcServices jdbcServices)
PreparedStatementDetailsStandard(PreparableMutationOperation tableMutation, Supplier<PreparedStatement> jdbcStatementCreator, JdbcServices jdbcServices)
-
Uses of JdbcServices in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return JdbcServices Modifier and Type Method Description JdbcServices
SessionDelegatorBaseImpl. getJdbcServices()
JdbcServices
SessionFactoryDelegatingImpl. getJdbcServices()
JdbcServices
SessionFactoryImplementor. getJdbcServices()
Get the JdbcServices.JdbcServices
SharedSessionContractImplementor. getJdbcServices()
Obtain theJdbcServices
for the factory which created this session.JdbcServices
SharedSessionDelegatorBaseImpl. getJdbcServices()
-
Uses of JdbcServices in org.hibernate.internal
Fields in org.hibernate.internal declared as JdbcServices Modifier and Type Field Description JdbcServices
FastSessionServices. jdbcServices
Methods in org.hibernate.internal that return JdbcServices Modifier and Type Method Description JdbcServices
AbstractSharedSessionContract. getJdbcServices()
JdbcServices
JdbcSessionContextImpl. getJdbcServices()
JdbcServices
SessionFactoryImpl. getJdbcServices()
Constructors in org.hibernate.internal with parameters of type JdbcServices Constructor Description JdbcSessionContextImpl(SessionFactoryImplementor sessionFactory, StatementInspector statementInspector, PhysicalConnectionHandlingMode connectionHandlingMode, JdbcServices jdbcServices, BatchBuilder batchBuilder, JdbcObserver jdbcObserver)
-
Uses of JdbcServices in org.hibernate.metamodel.spi
Methods in org.hibernate.metamodel.spi that return JdbcServices Modifier and Type Method Description JdbcServices
RuntimeModelCreationContext. getJdbcServices()
-
Uses of JdbcServices in org.hibernate.resource.jdbc.internal
Constructors in org.hibernate.resource.jdbc.internal with parameters of type JdbcServices Constructor Description LogicalConnectionManagedImpl(JdbcConnectionAccess jdbcConnectionAccess, JdbcSessionContext jdbcSessionContext, ResourceRegistry resourceRegistry, JdbcServices jdbcServices)
-
Uses of JdbcServices in org.hibernate.resource.jdbc.spi
Methods in org.hibernate.resource.jdbc.spi that return JdbcServices Modifier and Type Method Description JdbcServices
JdbcSessionContext. getJdbcServices()
-
Uses of JdbcServices in org.hibernate.sql.ast.spi
Methods in org.hibernate.sql.ast.spi that return JdbcServices Modifier and Type Method Description protected JdbcServices
AbstractSqlAstTranslator. getJdbcServices()
-
Uses of JdbcServices in org.hibernate.sql.model.ast.builder
Methods in org.hibernate.sql.model.ast.builder that return JdbcServices Modifier and Type Method Description protected JdbcServices
AbstractTableMutationBuilder. getJdbcServices()
-
Uses of JdbcServices in org.hibernate.testing.boot
Classes in org.hibernate.testing.boot that implement JdbcServices Modifier and Type Class Description class
BasicTestingJdbcServiceImpl
Implementation of theJdbcServices
contract for use by tests.
-