Package com.ibatis.db.dao

Examples of com.ibatis.db.dao.DaoException


      throws DaoException {
    try {
      sqlMap.startTransaction();
      return new SqlMap2DaoTransaction(sqlMap);
    } catch (SQLException e) {
      throw new DaoException("Error getting transaction. Cause: " + e, e);
    }
  }
View Full Code Here


  public void commit() throws DaoException {
    try {
      client.commitTransaction();
      client.endTransaction();
    } catch (SQLException e) {
      throw new DaoException("Error committing transaction. Cause: " + e, e);
    }
  }
View Full Code Here

  public void rollback() throws DaoException {
    try {
      client.endTransaction();
    } catch (SQLException e) {
      throw new DaoException("Error rolling back transaction. Cause: " + e, e);
    }
  }
View Full Code Here

TOP

Related Classes of com.ibatis.db.dao.DaoException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.