Package org.g4studio.core.orm.xibatis.support

Examples of org.g4studio.core.orm.xibatis.support.SqlMapClientCallback


   * @return
   * @throws SQLException
   */
  public Dto batchSaveSfxmDomains(final Dto pDto) {
    Dto outDto = new BaseDto();
    g4Dao.getSqlMapClientTpl().execute(new SqlMapClientCallback() {
      public Object doInSqlMapClient(SqlMapExecutor executor) throws SQLException {
        executor.startBatch();
        for (int i = 0; i < pDto.getAsInteger("count").intValue(); i++) {
          Dto dto = new BaseDto();
          String xmid = IDHelper.getXmID();
View Full Code Here

TOP

Related Classes of org.g4studio.core.orm.xibatis.support.SqlMapClientCallback

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.