Package org.apache.ibatis.mapping

Examples of org.apache.ibatis.mapping.BoundSql


    }
  }

  private BoundSql copyFromBoundSql(MappedStatement ms, BoundSql boundSql,
      String sql) {
    BoundSql newBoundSql = new BoundSql(ms.getConfiguration(),sql, boundSql.getParameterMappings(), boundSql.getParameterObject());
    for (ParameterMapping mapping : boundSql.getParameterMappings()) {
        String prop = mapping.getProperty();
        if (boundSql.hasAdditionalParameter(prop)) {
            newBoundSql.setAdditionalParameter(prop, boundSql.getAdditionalParameter(prop));
        }
    }
    return newBoundSql;
  }
View Full Code Here

TOP

Related Classes of org.apache.ibatis.mapping.BoundSql

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.