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 JdbcCallParameterRegistration
ProcedureParameterImpl. 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 JdbcCallParameterRegistration
FunctionReturnImplementor. toJdbcParameterRegistration(int startIndex, ProcedureCallImplementor<?> procedureCall)
JdbcCallParameterRegistration
ProcedureParameterImplementor. 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 class
JdbcCallFunctionReturnImpl
class
JdbcCallParameterRegistrationImpl
Methods 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 void
JdbcCallImpl.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 interface
JdbcCallFunctionReturn
Models 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
-