Package | Description |
---|---|
org.hibernate.procedure | |
org.hibernate.procedure.internal |
Defines the internal support for implementing stored procedure calling.
|
org.hibernate.procedure.spi | |
org.hibernate.query.procedure.internal | |
org.hibernate.query.procedure.spi |
Modifier and Type | Method and Description |
---|---|
ParameterRegistration |
ProcedureCall.getParameterRegistration(int position)
Retrieve a previously registered parameter memento by the position under which it was registered.
|
ParameterRegistration |
ProcedureCall.getParameterRegistration(String name)
Retrieve a previously registered parameter memento by the name under which it was registered.
|
<T> ParameterRegistration<T> |
ProcedureCall.registerParameter(int position,
Class<T> type,
ParameterMode mode)
Basic form for registering a positional parameter.
|
<T> ParameterRegistration<T> |
ProcedureCall.registerParameter(String parameterName,
Class<T> type,
ParameterMode mode)
Basic form for registering a named parameter.
|
Modifier and Type | Method and Description |
---|---|
List<ParameterRegistration> |
ProcedureCall.getRegisteredParameters()
Retrieve all registered parameters.
|
Modifier and Type | Method and Description |
---|---|
<T> T |
ProcedureOutputs.getOutputParameterValue(ParameterRegistration<T> parameterRegistration)
Retrieve the value of an OUTPUT parameter by the parameter's registration memento.
|
Modifier and Type | Method and Description |
---|---|
<T> ParameterRegistration<T> |
ProcedureCallImpl.registerParameter(int position,
Class<T> type,
ParameterMode mode) |
<T> ParameterRegistration<T> |
ProcedureCallImpl.registerParameter(String name,
Class<T> type,
ParameterMode mode) |
Modifier and Type | Method and Description |
---|---|
<T> T |
ProcedureOutputsImpl.getOutputParameterValue(ParameterRegistration<T> parameterRegistration) |
Modifier and Type | Interface and Description |
---|---|
interface |
ParameterRegistrationImplementor<T>
Additional internal contract for ParameterRegistration
|
Modifier and Type | Class and Description |
---|---|
class |
ProcedureParameterImpl<T> |
Modifier and Type | Interface and Description |
---|---|
interface |
ProcedureParameterImplementor<T>
NOTE: Consider this contract (and its sub-contracts) as incubating as we transition to 6.0 and SQM
|
Copyright © 2019 JBoss by Red Hat. All rights reserved.