Package com.orientechnologies.orient.core.db.record

Examples of com.orientechnologies.orient.core.db.record.ODatabaseRecordTx.begin()


  public static void requestTransaction(){
    if (Logger.isDebugEnabled()) Logger.debug("Request Transaction: transaction count -before-: " + tranCount.get());
    ODatabaseRecordTx db = getConnection();
    if (!isInTransaction()){
      if (Logger.isTraceEnabled()) Logger.trace("Begin transaction");
      db.begin();
    }
    tranCount.set(tranCount.get().intValue()+1);
    if (Logger.isDebugEnabled()) Logger.debug("Request Transaction: transaction count -after-: " + tranCount.get());
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.