Package org.hibernate.engine.jdbc.spi
Interface ResultSetWrapper
-
public interface ResultSetWrapper
Contract for wrapping aResultSet
in a "column name cache" wrapper.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.sql.ResultSet
wrap(java.sql.ResultSet resultSet, ColumnNameCache columnNameCache)
Wrap a result set in a "column name cache" wrapper.
-
-
-
Method Detail
-
wrap
java.sql.ResultSet wrap(java.sql.ResultSet resultSet, ColumnNameCache columnNameCache)
Wrap a result set in a "column name cache" wrapper.- Parameters:
resultSet
- The result set to wrapcolumnNameCache
- The column name cache.- Returns:
- The wrapped result set.
-
-