4950515253545556
throws DaoException { try { sqlMap.startTransaction(); return new SqlMap2DaoTransaction(sqlMap); } catch (SQLException e) { throw new DaoException("Error getting transaction. Cause: " + e, e); } }
3334353637383940
public void commit() throws DaoException { try { client.commitTransaction(); client.endTransaction(); } catch (SQLException e) { throw new DaoException("Error committing transaction. Cause: " + e, e); } }
4142434445464748
public void rollback() throws DaoException { try { client.endTransaction(); } catch (SQLException e) { throw new DaoException("Error rolling back transaction. Cause: " + e, e); } }