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.

@FunctionalInterface public interface DBOperation<RESULT>
The database function to perform.
Author:
Christopher Mindus
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    Runs the function with the specified connection without performing commit.
  • Method Details Link icon

    • run Link icon

      RESULT run(Connection conn) throws SQLException
      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.