Package com.liusoft.dlog4j.beans

Examples of com.liusoft.dlog4j.beans.SiteStatBean


      update_q.setInteger(1, statDate);
      update_q.setInteger(2, source);
      if(siteid>0)
        update_q.setInteger(3, siteid);
      if(update_q.executeUpdate()<1){
        SiteStatBean ssb = new SiteStatBean();
        ssb.setSiteId(siteid);
        ssb.setUvCount(uvCount);
        ssb.setUpdateTime(new Date());
        ssb.setSource(source);
        ssb.setStatDate(statDate);
        ssn.save(ssb);
      }
      commit();
    }catch(Exception e){
      rollback();
View Full Code Here

TOP

Related Classes of com.liusoft.dlog4j.beans.SiteStatBean

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.