Package ch.inftec.ju.util.change.DbActionUtils

Examples of ch.inftec.ju.util.change.DbActionUtils.AbstractActionBuilder


     * @param tableName TableName of the row to be updated
     * @param primaryKeyValue Primary key value of the row to be updated
     * @return Builder to define the updates to be performed
     */
    public DbChangeGroupActionBuilder newUpdateAction(String tableName, Object primaryKeyValue) {
      AbstractActionBuilder actionBuilder = DbActionUtils.newUpdateAction(this.parentBuilder.dbConn, tableName, primaryKeyValue);
      return new DbChangeGroupActionBuilder(this, actionBuilder);
    }
View Full Code Here


     * Returns a builder to configure a new insert action to be added to the group.
     * @param tableName TableName of the row to be inserted
     * @return Builder to define the values of the new row
     */
    public DbChangeGroupActionBuilder newInsertAction(String tableName) {
      AbstractActionBuilder actionBuilder = DbActionUtils.newInsertAction(this.parentBuilder.dbConn, tableName);
      return new DbChangeGroupActionBuilder(this, actionBuilder);
    }
View Full Code Here

TOP

Related Classes of ch.inftec.ju.util.change.DbActionUtils.AbstractActionBuilder

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.