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

com.avaje.ebeaninternal.server.persist.BatchedPstmt Maven / Gradle / Ivy

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

import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;

/**
 * A batched statement that is held in BatchedPstmtHolder. It has a list of
 * BatchPostExecute which it will process after the statement is executed.
 * 

* This can hold CallableStatements as well. *

*/ public class BatchedPstmt { /** * The underlying statement. */ private PreparedStatement pstmt; /** * True if an insert that uses generated keys. */ private final boolean isGenKeys; /** * The list of BatchPostExecute used to perform post processing. */ private final ArrayList list = new ArrayList(); private final String sql; /** * Create with a given statement. */ public BatchedPstmt(PreparedStatement pstmt, boolean isGenKeys, String sql) { this.pstmt = pstmt; this.isGenKeys = isGenKeys; this.sql = sql; } /** * Return the number of batched statements. */ public int size() { return list.size(); } /** * Return the sql */ public String getSql() { return sql; } /** * Return the statement. */ public PreparedStatement getStatement() { return pstmt; } /** * Add the BatchPostExecute to the list for post execute processing. */ public void add(BatchPostExecute batchExecute) { list.add(batchExecute); } /** * Execute the statement using executeBatch(). * Run any post processing including getGeneratedKeys. */ public void executeBatch(boolean getGeneratedKeys) throws SQLException { executeAndCheckRowCounts(); if (isGenKeys && getGeneratedKeys) { getGeneratedKeys(); } postExecute(); close(); } /** * Close the underlying statement. */ public void close() throws SQLException { if (pstmt != null) { pstmt.close(); pstmt = null; } } private void postExecute() { for (int i = 0; i < list.size(); i++) { list.get(i).postExecute(); } } private void executeAndCheckRowCounts() throws SQLException { int[] results = pstmt.executeBatch(); if (results.length != list.size()) { String s = "results array error " + results.length + " " + list.size(); throw new SQLException(s); } // check for concurrency exceptions... for (int i = 0; i < results.length; i++) { list.get(i).checkRowCount(results[i]); } } private void getGeneratedKeys() throws SQLException { int index = 0; ResultSet rset = pstmt.getGeneratedKeys(); try { while (rset.next()) { Object idValue = rset.getObject(1); list.get(index).setGeneratedKey(idValue); index++; } } finally { if (rset != null) { rset.close(); } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy