Package com.avaje.ebeaninternal.api.SpiUpdate

Examples of com.avaje.ebeaninternal.api.SpiUpdate.OrmUpdateType


  /**
   * Perform post execute processing.
   */
  public void postExecute() throws SQLException {

    OrmUpdateType ormUpdateType = ormUpdate.getOrmUpdateType();
    String tableName = ormUpdate.getBaseTable();
   
    if (transaction.isLogSummary()) {
      String m = ormUpdateType + " table[" + tableName + "] rows["+ rowCount + "] bind[" + bindLog + "]";
      transaction.logSummary(m);
View Full Code Here

TOP

Related Classes of com.avaje.ebeaninternal.api.SpiUpdate.OrmUpdateType

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.