Interface ResultProducers.ResultSetCreator
- Enclosing class:
ResultProducers
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Returns a ResultSet from a Statement.
-
Method Summary
Modifier and TypeMethodDescriptioncreateResultSet
(Statement statement) Use the supplied statement to create a ResultSet.
-
Method Details
-
createResultSet
Use the supplied statement to create a ResultSet.- Parameters:
statement
- An implementation ofStatement
.- Returns:
- A
ResultSet
. May be null. - Throws:
SQLException
- If the result set could not be created.
-