Package org.hibernate.sql.exec.spi
Interface JdbcOperationQueryCall
-
- All Superinterfaces:
JdbcOperation
,JdbcOperationQuery
,JdbcOperationQueryAnonBlock
- All Known Implementing Classes:
JdbcCallImpl
public interface JdbcOperationQueryCall extends JdbcOperationQueryAnonBlock
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<JdbcCallRefCursorExtractor>
getCallRefCursorExtractors()
Extractors for REF_CURSOR (ResultSet) parametersJdbcCallFunctionReturn
getFunctionReturn()
If the call is a function, returns the function return descriptorList<JdbcCallParameterExtractor>
getParameterExtractors()
Extractors for reading back any OUT/INOUT parameters.List<JdbcCallParameterRegistration>
getParameterRegistrations()
Get the list of any parameter registrations we need to register against the generated CallableStatement-
Methods inherited from interface org.hibernate.sql.exec.spi.JdbcOperation
getParameterBinders, getSqlString
-
Methods inherited from interface org.hibernate.sql.exec.spi.JdbcOperationQuery
dependsOnParameterBindings, getAffectedTableNames, getAppliedParameters, getFilterJdbcParameters, isCompatibleWith
-
Methods inherited from interface org.hibernate.sql.exec.spi.JdbcOperationQueryAnonBlock
getJdbcValuesMappingProducer
-
-
-
-
Method Detail
-
getFunctionReturn
JdbcCallFunctionReturn getFunctionReturn()
If the call is a function, returns the function return descriptor
-
getParameterRegistrations
List<JdbcCallParameterRegistration> getParameterRegistrations()
Get the list of any parameter registrations we need to register against the generated CallableStatement
-
getParameterExtractors
List<JdbcCallParameterExtractor> getParameterExtractors()
Extractors for reading back any OUT/INOUT parameters.- API Note:
- Note that REF_CURSOR parameters should be handled via
getCallRefCursorExtractors()
-
getCallRefCursorExtractors
List<JdbcCallRefCursorExtractor> getCallRefCursorExtractors()
Extractors for REF_CURSOR (ResultSet) parameters
-
-