org.hibernate.jdbc

Interface Work

public interface Work

Contract for performing a discrete piece of JDBC work.
Author:
Steve Ebersole

Method Summary

void
execute(Connection connection)
Execute the discrete work encapsulated by this work instance using the supplied connection.

Method Details

execute

public 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.