接口的使用
org.hibernate.procedure.ParameterRegistration
-
使用ParameterRegistration的程序包 程序包 说明 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 -
-
org.hibernate.procedure中ParameterRegistration的使用
返回ParameterRegistration的org.hibernate.procedure中的方法 修饰符和类型 方法 说明 ParameterRegistrationProcedureCall. getParameterRegistration(int position)Retrieve a previously registered parameter memento by the position under which it was registered.ParameterRegistrationProcedureCall. 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, javax.persistence.ParameterMode mode)Basic form for registering a positional parameter.<T> ParameterRegistration<T>ProcedureCall. registerParameter(String parameterName, Class<T> type, javax.persistence.ParameterMode mode)Basic form for registering a named parameter.返回变量类型为ParameterRegistration的类型的org.hibernate.procedure中的方法 修饰符和类型 方法 说明 List<ParameterRegistration>ProcedureCall. getRegisteredParameters()Retrieve all registered parameters.参数类型为ParameterRegistration的org.hibernate.procedure中的方法 修饰符和类型 方法 说明 <T> TProcedureOutputs. getOutputParameterValue(ParameterRegistration<T> parameterRegistration)Retrieve the value of an OUTPUT parameter by the parameter's registration memento. -
org.hibernate.procedure.internal中ParameterRegistration的使用
返回ParameterRegistration的org.hibernate.procedure.internal中的方法 修饰符和类型 方法 说明 <T> ParameterRegistration<T>ProcedureCallImpl. registerParameter(int position, Class<T> type, javax.persistence.ParameterMode mode)<T> ParameterRegistration<T>ProcedureCallImpl. registerParameter(String name, Class<T> type, javax.persistence.ParameterMode mode)参数类型为ParameterRegistration的org.hibernate.procedure.internal中的方法 修饰符和类型 方法 说明 <T> TProcedureOutputsImpl. getOutputParameterValue(ParameterRegistration<T> parameterRegistration) -
org.hibernate.procedure.spi中ParameterRegistration的使用
org.hibernate.procedure.spi中ParameterRegistration的子接口 修饰符和类型 接口 说明 interfaceParameterRegistrationImplementor<T>Additional internal contract for ParameterRegistration -
org.hibernate.query.procedure.internal中ParameterRegistration的使用
实现ParameterRegistration的org.hibernate.query.procedure.internal中的类 修饰符和类型 类 说明 classProcedureParameterImpl<T> -
org.hibernate.query.procedure.spi中ParameterRegistration的使用
org.hibernate.query.procedure.spi中ParameterRegistration的子接口 修饰符和类型 接口 说明 interfaceProcedureParameterImplementor<T>NOTE: Consider this contract (and its sub-contracts) as incubating as we transition to 6.0 and SQM
-