Uses of Interface
org.hibernate.sql.exec.spi.JdbcCallParameterRegistration
-
Packages that use JdbcCallParameterRegistration Package Description org.hibernate.procedure.internal Defines the internal implementation of the stored procedure SPI.org.hibernate.procedure.spi Defines an SPI for calling stored procedures and functions.org.hibernate.sql.exec.internal Implementation of the SPI for execution of SQL statements via JDBC.org.hibernate.sql.exec.spi SPI for execution of SQL statements via JDBC. -
-
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)
Constructor parameters in org.hibernate.sql.exec.internal with type arguments of type JdbcCallParameterRegistration Constructor Description JdbcCallImpl(String callableName, JdbcCallFunctionReturn functionReturn, List<JdbcCallParameterRegistration> parameterRegistrations, List<JdbcParameterBinder> parameterBinders, List<JdbcCallParameterExtractor> parameterExtractors)
JdbcCallImpl(String callableName, JdbcCallFunctionReturn functionReturn, List<JdbcCallParameterRegistration> parameterRegistrations, List<JdbcParameterBinder> parameterBinders, List<JdbcCallParameterExtractor> parameterExtractors, List<JdbcCallRefCursorExtractor> refCursorExtractors)
-
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 JdbcOperationQueryCall 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>
JdbcOperationQueryCall. getParameterRegistrations()
Get the list of any parameter registrations we need to register against the generated CallableStatement
-