Package org.hibernate.sql.exec.spi
Interface JdbcCallParameterExtractor<T>
-
- All Known Implementing Classes:
JdbcCallParameterExtractorImpl
public interface JdbcCallParameterExtractor<T>
Controls extracting values from OUT/INOUT parameters.For extracting REF_CURSOR results, see
JdbcCallRefCursorExtractorImpl
instead.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
extractValue(CallableStatement callableStatement, boolean shouldUseJdbcNamedParameters, SharedSessionContractImplementor session)
String
getParameterName()
int
getParameterPosition()
-
-
-
Method Detail
-
getParameterName
String getParameterName()
-
getParameterPosition
int getParameterPosition()
-
extractValue
T extractValue(CallableStatement callableStatement, boolean shouldUseJdbcNamedParameters, SharedSessionContractImplementor session)
-
-