• 大小: 5.17MB
    文件类型: .rar
    金币: 2
    下载: 0 次
    发布日期: 2024-01-28
  • 语言: 其他
  • 标签: eshop  毕业论文  

资源简介

完整版 毕业论文 eshop毕业论文加源代码

资源截图

代码片段和文件信息

package com.wy.dao;

import java.sql.*;
import java.util.*;

import com.wy.tool.JDBConnection;
import com.wy.domain.AfficheForm;

//对公告信息的操作
public class AfficheDao {
  private Connection connection = null; //定义连接的对象
  private PreparedStatement ps = null; //定义预准备的对象
  private JDBConnection jdbc = null; //定义数据库连接对象
  public AfficheDao() {
    jdbc = new JDBConnection();
    connection = jdbc.connection; //利用构造方法取得数据库连接
  }

  //删除的方法
  public void deleteAffiche(Integer id) {
    try {
      ps = connection.prepareStatement(“delete from tb_affiche where id=?“);
      ps.setInt(1 id.intValue());
      ps.executeUpdate();
      ps.close();
    }
    catch (SQLException ex) {
    }
  }

  //修改的方法
  public void updateAffiche(AfficheForm form) {
    try {
      ps = connection.prepareStatement(“update tb_affiche set name=?content=? where id=?“);
      ps.setString(1 form.getName());
      ps.setString(2 form.getContent());
      ps.setInt(3 form.getId().intValue());
      ps.executeUpdate();
      ps.close();
    }
    catch (SQLException ex) {
    }
  }

//添加的方法
  public void insertAffiche(AfficheForm form) {
    try {
      ps = connection.prepareStatement(“insert into tb_affiche values (??getDate())“);
      ps.setString(1 form.getName());
      ps.setString(2 form.getContent());
      ps.executeUpdate();
      ps.close();
    }
    catch (SQLException ex) {
    }
  }

//以数据库流水号为条件查询信息
  public AfficheForm selectOneAffiche(Integer id) {
    AfficheForm affiche = null;
    try {
      ps = connection.prepareStatement(“select * from tb_affiche where id=?“);
      ps.setInt(1 id.intValue());
      ResultSet rs = ps.executeQuery();
      while (rs.next()) {
        affiche = new AfficheForm();
        affiche.setId(Integer.valueOf(rs.getString(1)));
        affiche.setName(rs.getString(2));
        affiche.setContent(rs.getString(3));
        affiche.setIssueTime(rs.getString(4));
      }
    }
    catch (SQLException ex) {
    }
    return affiche;
  }

//全部查询的方法
  public List selectAffiche() {
    List list = new ArrayList();
    AfficheForm affiche = null;
    try {
      ps = connection.prepareStatement(“select * from tb_affiche order by id DESC“);
      ResultSet rs = ps.executeQuery();
      while (rs.next()) {
        affiche = new AfficheForm();
        affiche.setId(Integer.valueOf(rs.getString(1)));
        affiche.setName(rs.getString(2));
        affiche.setContent(rs.getString(3));
        affiche.setIssueTime(rs.getString(4));
        list.add(affiche);
      }
    }
    catch (SQLException ex) {
    }
    return list;

  }

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        401  2009-05-09 15:07  200614293李国庆\shop\bg-resultMember.jsp

     文件       2306  2009-05-09 15:07  200614293李国庆\shop\bg-resultTen.jsp

     文件       2961  2009-05-09 15:07  200614293李国庆\shop\bg-selectContent.jsp

     文件       3341  2009-05-09 15:07  200614293李国庆\shop\bg-selectMember.jsp

     文件       2364  2009-05-09 15:07  200614293李国庆\shop\bg-sellResult.jsp

     文件       2720  2009-05-09 15:07  200614293李国庆\shop\bg-smallTypeInsert.jsp

     文件        394  2009-05-09 15:07  200614293李国庆\shop\bg-smallTypeResult.jsp

     文件       4559  2009-05-09 15:07  200614293李国庆\shop\bg-smallTypeSelect.jsp

     文件       1474  2009-05-09 15:07  200614293李国庆\shop\bg-up.jsp

     文件        954  2009-05-09 15:07  200614293李国庆\shop\cart_add.jsp

     文件       4061  2009-05-09 15:07  200614293李国庆\shop\cart_checkOut.jsp

     文件       1793  2009-05-09 15:07  200614293李国庆\shop\cart_checkOutOrder.jsp

     文件        170  2009-05-09 15:07  200614293李国庆\shop\cart_clear.jsp

     文件       4241  2009-05-09 15:07  200614293李国庆\shop\cart_detail.jsp

     文件        825  2009-05-09 15:07  200614293李国庆\shop\cart_modify.jsp

     文件       3694  2009-05-09 15:07  200614293李国庆\shop\cart_see.jsp

     文件        308  2009-05-09 15:07  200614293李国庆\shop\connection.jsp

     文件       1756  2009-05-09 15:07  200614293李国庆\shop\fg-One.jsp

     文件       2415  2009-05-09 15:07  200614293李国庆\shop\fg-Two.jsp

     文件       1427  2009-05-09 15:07  200614293李国庆\shop\fg-afficheSelect.jsp

     文件        820  2009-05-09 15:07  200614293李国庆\shop\fg-checkMemberResult.jsp

     文件        533  2009-05-09 15:07  200614293李国庆\shop\fg-down.jsp

     文件       1150  2009-05-09 15:07  200614293李国庆\shop\fg-four.jsp

     文件       2512  2009-05-09 15:07  200614293李国庆\shop\fg-goodSelectOne.jsp

     文件        716  2009-05-09 15:07  200614293李国庆\shop\fg-goodSorts.jsp

     文件       6598  2009-05-09 15:07  200614293李国庆\shop\fg-left.jsp

     文件       3709  2009-05-09 15:07  200614293李国庆\shop\fg-memberRegister.jsp

     文件       3726  2009-05-09 15:07  200614293李国庆\shop\fg-selectBigGoods.jsp

     文件       4006  2009-05-09 15:07  200614293李国庆\shop\fg-selectFreeGoods.jsp

     文件       2891  2009-05-09 15:07  200614293李国庆\shop\fg-selectNewGoods.jsp

............此处省略185个文件信息

评论

共有 条评论