/* (non-Javadoc)
  * @see net.ymate.platform.persistence.jdbc.support.IEntityRepository#executeForUpdateAll(java.lang.String, java.util.List)
  */
 public int[] executeForUpdateAll(String sql, List<Object[]> params)
     throws OperatorException, ConnectionException {
   ISession _session = JDBC.openSession(this.getDataSourceName());
   try {
     return _session.executeForUpdateAll(sql, params);
   } finally {
     _session.close();
   }
 }