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

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

The newest version!
package kz.greetgo.db;

import java.sql.Connection;

public class JdbcOneConnection implements Jdbc {

  private final Connection connection;

  public JdbcOneConnection(Connection connection) {
    this.connection = connection;
  }

  @Override
  public  T execute(ConnectionCallback connectionCallback) {
    try {
      return connectionCallback.doInConnection(connection);
    } catch (Exception e) {
      if (e instanceof RuntimeException) throw (RuntimeException) e;
      throw new RuntimeException(e);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy