Package com.iizix.server.db
Interface DBOperation<RESULT>
- Type Parameters:
RESULT
- The return value.
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
The database function to perform.
- Author:
- Christopher Mindus
Method Summary
Modifier and TypeMethodDescriptionrun
(Connection conn) Runs the function with the specified connection without performing commit.
Method Details
run
Runs the function with the specified connection without performing commit.- Parameters:
conn
- The JDBC connection.- Returns:
- The return property container, or null for none.
- Throws:
SQLException
- For SQL errors.