Package org.hibernate.sql.exec.spi
Interface JdbcOperationQueryAnonBlock
-
- All Superinterfaces:
JdbcOperation
,JdbcOperationQuery
- All Known Subinterfaces:
JdbcOperationQueryCall
- All Known Implementing Classes:
JdbcCallImpl
public interface JdbcOperationQueryAnonBlock extends JdbcOperationQuery
An anonymous call block (sometimes called an anonymous procedure) to be executed on the database. The format of this various by database, but it is essentially an unnamed procedure without OUT, INOUT or REF_CURSOR type parameters
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JdbcValuesMappingProducer
getJdbcValuesMappingProducer()
Retrieve 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, getFilterJdbcParameters, isCompatibleWith
-
-
-
-
Method Detail
-
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.
-
-