Examples of PointDao


Examples of at.fhj.itm.dao.PointDAO

  @Override
  public ServiceTrip createServiceTrip() {
    try {
      DataSource ds = getDefaultDataSource();
      TripDAO tripDAO = MySqlDAOFactory.getInstance().getTripDAO();
      PointDAO pointDAO = MySqlDAOFactory.getInstance().getPointDAO();
      WaypointDAO waypointDAO = MySqlDAOFactory.getInstance()
          .getWaypointDAO();
      GoogleUtil googleUtil = createGoogleUtil();
      JsfUtil jsfUtil = createJsfUtil();
View Full Code Here

Examples of kr.pe.okjsp.member.PointDao

      pstmt.setString(7, memopass);
      pstmt.setString(8, ip);
      memocnt = pstmt.executeUpdate();
     
      if (sid > 0) {
        new PointDao().log(sid, 2, 1, String.valueOf(mseq));
      }
    } catch (Exception e) {
      System.out.println(e);
    } finally {
      dbCon.close(null, pstmt, rs);
View Full Code Here

Examples of kr.pe.okjsp.member.PointDao

        // file db���� ���� - sts �� 0 �� ����
        doQuery(conn, QUERY_DEL_SEQ_FILE, seq);
        // file ���� ����
        try {
          long sid = Long.parseLong(article.getId());
          new PointDao().log(sid, 3, -50, String.valueOf(article.getSeq()));
        } catch (Exception e) {
          System.out.println(e);
        }
      } else {
        resourceName = "/jsp/error.jsp";
View Full Code Here

Examples of kr.pe.okjsp.member.PointDao

      pstmt.setString(++idx, article.getHtml());
      pstmt.setString(++idx, article.getCcl_id());
      pstmt.executeUpdate();

      if (article.getSid() > 0) {
        new PointDao().log(article.getSid(), 2, 10, String.valueOf(article.getSeq()));
      }
    } catch (SQLException e) {
      System.out.println(e);
    } finally {
      dbCon.close(null, pstmt, rs);
View Full Code Here

Examples of kr.pe.okjsp.member.PointDao

      pstmt.setString(13, article.getIp());
      pstmt.setString(14, article.getHtml());
      pstmt.setString(15, article.getCcl_id());
      result = pstmt.executeUpdate();
      if (article.getSid() > 0) {
        new PointDao().log(article.getSid(), 2, 10, String.valueOf(article.getSeq()));
      }
    } catch (SQLException e) {
      System.out.println(e.toString());
    } finally {
      dbCon.close(null, pstmt);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.