Interface Work

  • All Known Implementing Classes:
    AbstractWork

    public interface Work
    Contract for performing a discrete piece of JDBC work.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void execute​(java.sql.Connection connection)
      Execute the discrete work encapsulated by this work instance using the supplied connection.
    • Method Detail

      • execute

        void execute​(java.sql.Connection connection)
              throws java.sql.SQLException
        Execute the discrete work encapsulated by this work instance using the supplied connection.
        Parameters:
        connection - The connection on which to perform the work.
        Throws:
        java.sql.SQLException - Thrown during execution of the underlying JDBC interaction.
        HibernateException - Generally indicates a wrapped SQLException.