Uses of Interface
org.hibernate.query.procedure.ProcedureParameter
Packages that use ProcedureParameter
Package
Description
Defines support for executing database stored procedures and functions and accessing their outputs.
Defines the internal implementation of the stored procedure SPI.
Defines an SPI for calling stored procedures and functions.
-
Uses of ProcedureParameter in org.hibernate.procedure
Subinterfaces of ProcedureParameter in org.hibernate.procedureModifier and TypeInterfaceDescriptioninterface
Describes the function return for ProcedureCalls that represent calls to a function ("{? = call ...}
syntax) rather that a proc ({call ...}
syntax)Methods in org.hibernate.procedure that return ProcedureParameterModifier and TypeMethodDescriptionProcedureCall.getParameterRegistration
(int position) Retrieve a previously registered parameter memento by the position under which it was registered.ProcedureCall.getParameterRegistration
(String name) Retrieve a previously registered parameter memento by the name under which it was registered.<T> ProcedureParameter<T>
ProcedureCall.registerParameter
(int position, Class<T> type, ParameterMode mode) Basic form for registering a positional parameter.<T> ProcedureParameter<T>
ProcedureCall.registerParameter
(int position, BasicTypeReference<T> type, ParameterMode mode) Basic form for registering a positional parameter.<T> ProcedureParameter<T>
ProcedureCall.registerParameter
(String parameterName, Class<T> type, ParameterMode mode) Basic form for registering a named parameter.<T> ProcedureParameter<T>
ProcedureCall.registerParameter
(String parameterName, BasicTypeReference<T> type, ParameterMode mode) Basic form for registering a named parameter.Methods in org.hibernate.procedure that return types with arguments of type ProcedureParameterModifier and TypeMethodDescriptionProcedureCall.getRegisteredParameters()
Retrieve all registered parameters.Methods in org.hibernate.procedure with parameters of type ProcedureParameterModifier and TypeMethodDescription<T> T
ProcedureOutputs.getOutputParameterValue
(ProcedureParameter<T> parameter) Retrieve the value of an OUTPUT parameter by the parameter's registration memento. -
Uses of ProcedureParameter in org.hibernate.procedure.internal
Classes in org.hibernate.procedure.internal that implement ProcedureParameterMethods in org.hibernate.procedure.internal that return ProcedureParameterModifier and TypeMethodDescription<T> ProcedureParameter<T>
ProcedureCallImpl.registerParameter
(int position, Class<T> javaType, ParameterMode mode) <T> ProcedureParameter<T>
ProcedureCallImpl.registerParameter
(int position, BasicTypeReference<T> typeReference, ParameterMode mode) Methods in org.hibernate.procedure.internal with parameters of type ProcedureParameterModifier and TypeMethodDescription<T> T
ProcedureOutputsImpl.getOutputParameterValue
(ProcedureParameter<T> parameter) -
Uses of ProcedureParameter in org.hibernate.procedure.spi
Subinterfaces of ProcedureParameter in org.hibernate.procedure.spiModifier and TypeInterfaceDescriptioninterface
interface
SPI extension for ProcedureParameter