Interface DatabaseProcedure<C,P>

Type Parameters:
C - the connection type required by this procedure
P - the procedure parameter type

public interface DatabaseProcedure<C,P>
A database procedure
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    execute(C connection, @Nullable P parameter)
    Executes this procedure using the given connection
  • Method Details

    • execute

      void execute(C connection, @Nullable P parameter)
      Executes this procedure using the given connection
      Parameters:
      connection - the connection to use
      parameter - the procedure parameter, if any