Uses of Interface
org.hibernate.query.procedure.ProcedureParameter
-
Packages that use ProcedureParameter Package Description org.hibernate.procedure Defines support for executing database stored procedures and functions and accessing their outputs.org.hibernate.procedure.spi Defines an SPI for calling stored procedures and functions. -
-
Uses of ProcedureParameter in org.hibernate.procedure
Subinterfaces of ProcedureParameter in org.hibernate.procedure Modifier and Type Interface Description interfaceFunctionReturn<T>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 ProcedureParameter Modifier and Type Method Description ProcedureParameterProcedureCall. getParameterRegistration(int position)Retrieve a previously registered parameter memento by the position under which it was registered.ProcedureParameterProcedureCall. 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 ProcedureParameter Modifier and Type Method Description List<ProcedureParameter>ProcedureCall. getRegisteredParameters()Retrieve all registered parameters.Methods in org.hibernate.procedure with parameters of type ProcedureParameter Modifier and Type Method Description <T> TProcedureOutputs. getOutputParameterValue(ProcedureParameter<T> parameter)Retrieve the value of an OUTPUT parameter by the parameter's registration memento. -
Uses of ProcedureParameter in org.hibernate.procedure.spi
Subinterfaces of ProcedureParameter in org.hibernate.procedure.spi Modifier and Type Interface Description interfaceFunctionReturnImplementor<T>interfaceProcedureParameterImplementor<T>SPI extension for ProcedureParameter
-