Uses of Interface
org.hibernate.sql.exec.spi.JdbcCallParameterRegistration
-
Packages that use JdbcCallParameterRegistration Package Description org.hibernate.procedure.internal Defines the internal support for implementing stored procedure calling.org.hibernate.procedure.spi org.hibernate.sql.exec.internal org.hibernate.sql.exec.spi -
-
Uses of JdbcCallParameterRegistration in org.hibernate.procedure.internal
Methods in org.hibernate.procedure.internal that return JdbcCallParameterRegistration Modifier and Type Method Description JdbcCallParameterRegistrationProcedureParameterImpl. toJdbcParameterRegistration(int startIndex, ProcedureCallImplementor<?> procedureCall) -
Uses of JdbcCallParameterRegistration in org.hibernate.procedure.spi
Methods in org.hibernate.procedure.spi that return JdbcCallParameterRegistration Modifier and Type Method Description default JdbcCallParameterRegistrationFunctionReturnImplementor. toJdbcParameterRegistration(int startIndex, ProcedureCallImplementor<?> procedureCall)JdbcCallParameterRegistrationProcedureParameterImplementor. toJdbcParameterRegistration(int startIndex, ProcedureCallImplementor<?> procedureCall) -
Uses of JdbcCallParameterRegistration in org.hibernate.sql.exec.internal
Classes in org.hibernate.sql.exec.internal that implement JdbcCallParameterRegistration Modifier and Type Class Description classJdbcCallFunctionReturnImplclassJdbcCallParameterRegistrationImplMethods in org.hibernate.sql.exec.internal that return types with arguments of type JdbcCallParameterRegistration Modifier and Type Method Description List<JdbcCallParameterRegistration>JdbcCallImpl. getParameterRegistrations()Methods in org.hibernate.sql.exec.internal with parameters of type JdbcCallParameterRegistration Modifier and Type Method Description voidJdbcCallImpl.Builder. addParameterRegistration(JdbcCallParameterRegistration registration) -
Uses of JdbcCallParameterRegistration in org.hibernate.sql.exec.spi
Subinterfaces of JdbcCallParameterRegistration in org.hibernate.sql.exec.spi Modifier and Type Interface Description interfaceJdbcCallFunctionReturnModels the function return when the JdbcCall represents a call to a database function.Methods in org.hibernate.sql.exec.spi that return types with arguments of type JdbcCallParameterRegistration Modifier and Type Method Description List<JdbcCallParameterRegistration>JdbcCall. getParameterRegistrations()Get the list of any parameter registrations we need to register against the generated CallableStatement
-