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.
 
- 
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.
 
 -