All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kz.greetgo.db.ConnectionCallback Maven / Gradle / Ivy

The newest version!
package kz.greetgo.db;

import java.sql.Connection;

/**
 * Callback function for DB access
 *
 * @param  the returning type
 */
public interface ConnectionCallback {
  /**
   * Calling method when connection to DB accessed and all ready to use access DB logic
   *
   * @param con connection to DB
   * @return returning value
   * @throws Exception you need not use try/cache
   */
  T doInConnection(Connection con) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy