Package org.jdbi.v3.core.result
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 SummaryModifier and TypeMethodDescriptioncreateResultSet(Statement statement) Use the supplied statement to create a ResultSet.
- 
Method Details- 
createResultSetUse the supplied statement to create a ResultSet.- Parameters:
- statement- An implementation of- Statement.
- Returns:
- A ResultSet. May be null.
- Throws:
- SQLException- If the result set could not be created.
 
 
-