Interface TopiaSqlWork


public interface TopiaSqlWork
Interface used for any native SQL batch. This interface is highly inspired of org.hibernate.jdbc.Work.
Since:
3.0
Author:
Arnaud Thimel (Code Lutin)
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    execute(Connection connection)
    Execute the discrete work encapsulated by this work instance using the supplied connection.
  • Method Details

    • execute

      void execute(Connection connection) throws 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:
      SQLException - Thrown during execution of the underlying JDBC interaction.