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

com.avaje.ebeaninternal.server.transaction.ExplicitJdbcTransaction Maven / Gradle / Ivy

There is a newer version: 8.1.1
Show newest version
package com.avaje.ebeaninternal.server.transaction;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;

/**
 * This only works for Postgres and H2 (and doesn't work for Oracle).
 *
 * Uses explicit begin statement to start the transactions.
 */
public class ExplicitJdbcTransaction extends JdbcTransaction {

  public ExplicitJdbcTransaction(String id, boolean explicit, Connection connection, TransactionManager manager) {
    super(id, explicit, connection, manager);
  }

  @Override
  protected void checkAutoCommit(Connection connection) throws SQLException {
    // begin the transaction explicitly
    executeStatement("begin");
  }

  @Override
  protected void performRollback() throws SQLException {
    // Postgres needs this explicit rollback statement when used with AutoCommit=true
    executeStatement("rollback");
  }

  @Override
  protected void performCommit() throws SQLException {
    // Postgres needs this explicit commit statement when used with AutoCommit=true
    executeStatement("commit");
  }

  private void executeStatement(String statement) throws SQLException {
    PreparedStatement stmt = connection.prepareStatement(statement);
    try {
      stmt.execute();
    } finally {
      stmt.close();
    }
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy