jbatch/src/main/java/org/apache/batchee/container/services/persistence/JDBCPersistenceManagerService.java [789:797]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            statement.executeUpdate();
            if (!conn.getAutoCommit()) {
                conn.commit();
            }
        } catch (final SQLException e) {
            e.printStackTrace();
            throw new PersistenceException(e);
        } finally {
            cleanupConnection(conn, null, statement);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



jbatch/src/main/java/org/apache/batchee/container/services/persistence/JDBCPersistenceManagerService.java [816:824]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            statement.executeUpdate();
            if (!conn.getAutoCommit()) {
                conn.commit();
            }
        } catch (final SQLException e) {
            e.printStackTrace();
            throw new PersistenceException(e);
        } finally {
            cleanupConnection(conn, null, statement);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



