Package com.iizix.server.db
Interface DBOperationParam<RESULT,PARAM>
- Type Parameters:
PARAM
- The parameter for the database operation.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, PARAM param) 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.param
- The parameter.- Returns:
- The return property container, or null for none.
- Throws:
SQLException
- For SQL errors.
-