Package org.hibernate.sql.exec.spi
Interface JdbcOperationQueryAnonBlock
- All Superinterfaces:
JdbcOperation
,JdbcOperationQuery
- All Known Subinterfaces:
JdbcOperationQueryCall
- All Known Implementing Classes:
JdbcCallImpl
An anonymous call block (sometimes called an anonymous procedure) to be executed
on the database. The format of this varies by database, but it is essentially an
unnamed procedure without OUT, INOUT or REF_CURSOR type parameters
-
Method Summary
Modifier and TypeMethodDescriptionRetrieve the "result set mappings" for processing any ResultSets returned from the JDBC call.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, isCompatibleWith
-
Method Details
-
getJdbcValuesMappingProducer
JdbcValuesMappingProducer getJdbcValuesMappingProducer()Retrieve the "result set mappings" for processing any ResultSets returned from the JDBC call. We expose multiple because JPA allows for an application to define multiple such mappings which are (unclearly) intended to describe the mapping for each ResultSet (in order) returned from the call.
-