资源简介
jsp的完整购物商城代码,挺全的,可以作为参考
代码片段和文件信息
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) {
ex.printStackTrace();
}
}
//修改的方法
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) {
ex.printStackTrace();
}
}
//添加的方法
public void insertAffiche(AfficheForm form) {
try {
ps = connection.prepareStatement(“insert into tb_affiche values (null??now())“);
ps.setString(1 form.getName());
ps.setString(2 form.getContent());
ps.executeUpdate();
ps.close();
}
catch (SQLException ex) {
ex.printStackTrace();
}
}
//以数据库流水号为条件查询信息
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) {
ex.printStackTrace();
}
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) {
ex.printStackTrace();
}
return list;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 519 2014-06-26 10:50 Shopping\.classpath
文件 1257 2014-06-26 10:50 Shopping\.project
文件 503 2014-06-26 10:50 Shopping\.settings\.jsdtscope
文件 395 2014-06-26 10:50 Shopping\.settings\org.eclipse.jdt.core.prefs
文件 454 2014-06-26 10:50 Shopping\.settings\org.eclipse.wst.common.component
文件 345 2014-06-26 10:50 Shopping\.settings\org.eclipse.wst.common.project.facet.core.xm
文件 49 2014-06-26 10:50 Shopping\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2014-06-26 10:50 Shopping\.settings\org.eclipse.wst.jsdt.ui.superType.name
文件 3302 2015-04-27 21:45 Shopping\build\classes\com\wy\dao\AfficheDao.class
文件 2848 2015-04-27 21:45 Shopping\build\classes\com\wy\dao\BigTypeDao.class
文件 6928 2015-04-27 21:45 Shopping\build\classes\com\wy\dao\GoodsDao.class
文件 2478 2015-04-27 21:45 Shopping\build\classes\com\wy\dao\li
文件 3407 2015-04-27 21:45 Shopping\build\classes\com\wy\dao\ManagerDao.class
文件 5168 2015-04-27 21:45 Shopping\build\classes\com\wy\dao\MemberDao.class
文件 4677 2015-04-27 21:45 Shopping\build\classes\com\wy\dao\OrderDao.class
文件 3018 2015-04-27 21:45 Shopping\build\classes\com\wy\dao\OrderDetailDao.class
文件 4256 2015-04-27 21:45 Shopping\build\classes\com\wy\dao\SmallTypeDao.class
文件 1807 2015-04-27 21:45 Shopping\build\classes\com\wy\domain\AfficheForm.class
文件 1662 2015-04-27 21:45 Shopping\build\classes\com\wy\domain\BigTypeForm.class
文件 3063 2015-04-27 21:45 Shopping\build\classes\com\wy\domain\GoodsForm.class
文件 1444 2015-04-27 21:45 Shopping\build\classes\com\wy\domain\li
文件 2049 2015-04-27 21:45 Shopping\build\classes\com\wy\domain\ManagerForm.class
文件 1928 2015-04-27 21:45 Shopping\build\classes\com\wy\domain\MemberForm.class
文件 1954 2015-04-27 21:45 Shopping\build\classes\com\wy\domain\OrderDetailForm.class
文件 3003 2015-04-27 21:45 Shopping\build\classes\com\wy\domain\OrderForm.class
文件 346 2015-04-27 21:45 Shopping\build\classes\com\wy\domain\SellGoodsForm.class
文件 1872 2015-04-27 21:45 Shopping\build\classes\com\wy\domain\SmallTypeForm.class
文件 647 2015-04-27 21:45 Shopping\build\classes\com\wy\tool\CountTime.class
文件 1127 2015-04-27 21:46 Shopping\build\classes\com\wy\tool\JDBConnection.class
文件 950 2015-04-27 21:45 Shopping\build\classes\com\wy\tool\SelfRequestProcessor.class
............此处省略242个文件信息
- 上一篇:Android图书管理系统带服务端完整版.rar
- 下一篇:网盘开发 java项目
相关资源
- 机房自由上机收费管理软件的设计与
- JSP购物网站完整源码
- JSP/Java网络编程课程设计/登录注册
- jsp课程设计6套完整的课程设计
- jsp在线投票系统源代码
- jsp+servlet视频网站
- eWebEditor_JSP_V9.5_CHS_GB2312完美破解版
- 毕业设计论文
- 韩顺平的jsp源代码,关于网上商城的
- 基于JSP的学生考勤系统
- 宠物医院管理系统(JSP+SERVLET+SQLSERV
- JSP与数据库的增删改查
- 基于java的交友网站
- jsp电话本设计
- JSP+Oracle 图书管理系统
- JSP超市管理信息系统.rar
- 二手车管理销售系统源码
- 毕业设计:网上教学辅助系统JSP+SQL
- JSP开发校园学生宿舍信息后台管理系
- JSP生成数据库数据的走势图项目
- jsp +SQL server用 连接池做的实验室设管
- jsp分页显示数据库中图片信息
- 基于Web的学生选课系统_课程大作业
- 用jsp+java做的一个财务管理系统
- eWebEditor V9.5 for JSP 简体中文版(GBK)
- 基于JSP的团购系统源码+数据库
- 在线投票系统jsp
- 简单JSP网上购物系统适合初学者
- jsp+javabean+servlet学生学籍管理系统
- JSP学生考勤系统(毕业论文)
评论
共有 条评论