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 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)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 interfaceJdbcCallFunctionReturnModels 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
-