资源简介
入门级JSP开发,适合初学者学习,easyui框架方便美观,适合做管理系统
代码片段和文件信息
package com.java1234.dao;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import com.java1234.model.Grade;
import com.java1234.model.PageBean;
import com.java1234.util.StringUtil;
public class GradeDao {
public ResultSet gradeList(Connection conPageBean pageBeanGrade grade)throws Exception{
StringBuffer sb=new StringBuffer(“select * from t_grade“);
if(grade!=null && StringUtil.isNotEmpty(grade.getGradeName())){
sb.append(“ and gradeName like ‘%“+grade.getGradeName()+“%‘“);
}
if(pageBean!=null){
sb.append(“ limit “+pageBean.getStart()+““+pageBean.getRows());
}
PreparedStatement pstmt=con.prepareStatement(sb.toString().replaceFirst(“and“ “where“));
return pstmt.executeQuery();
}
public int gradeCount(Connection conGrade grade)throws Exception{
StringBuffer sb=new StringBuffer(“select count(*) as total from t_grade“);
if(StringUtil.isNotEmpty(grade.getGradeName())){
sb.append(“ and gradeName like ‘%“+grade.getGradeName()+“%‘“);
}
PreparedStatement pstmt=con.prepareStatement(sb.toString().replaceFirst(“and“ “where“));
ResultSet rs=pstmt.executeQuery();
if(rs.next()){
return rs.getInt(“total“);
}else{
return 0;
}
}
/**
* delete from tableName where field in (135)
* @param con
* @param delIds
* @return
* @throws Exception
*/
public int gradeDelete(Connection conString delIds)throws Exception{
String sql=“delete from t_grade where id in(“+delIds+“)“;
PreparedStatement pstmt=con.prepareStatement(sql);
return pstmt.executeUpdate();
}
public int gradeAdd(Connection conGrade grade)throws Exception{
String sql=“insert into t_grade values(null??)“;
PreparedStatement pstmt=con.prepareStatement(sql);
pstmt.setString(1 grade.getGradeName());
pstmt.setString(2 grade.getGradeDesc());
return pstmt.executeUpdate();
}
public int gradeModify(Connection conGrade grade)throws Exception{
String sql=“update t_grade set gradeName=?gradeDesc=? where id=?“;
PreparedStatement pstmt=con.prepareStatement(sql);
pstmt.setString(1 grade.getGradeName());
pstmt.setString(2 grade.getGradeDesc());
pstmt.setInt(3 grade.getId());
return pstmt.executeUpdate();
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-05-24 12:34 11\
文件 215322 2013-05-24 12:34 11\Jsp&Servlet入门级项目全程实录笔记.pdf
目录 0 2013-05-24 12:33 11\StudentInfoManage\
文件 836 2013-05-24 10:08 11\StudentInfoManage\.classpath
文件 1050 2013-05-24 10:08 11\StudentInfoManage\.project
目录 0 2013-05-24 12:33 11\StudentInfoManage\.settings\
文件 503 2013-05-24 10:08 11\StudentInfoManage\.settings\.jsdtscope
文件 395 2013-05-24 10:08 11\StudentInfoManage\.settings\org.eclipse.jdt.core.prefs
文件 481 2013-05-24 10:08 11\StudentInfoManage\.settings\org.eclipse.wst.common.component
文件 345 2013-05-24 10:08 11\StudentInfoManage\.settings\org.eclipse.wst.common.project.facet.core.xm
文件 49 2013-05-24 10:08 11\StudentInfoManage\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2013-05-24 10:08 11\StudentInfoManage\.settings\org.eclipse.wst.jsdt.ui.superType.name
目录 0 2013-05-24 12:33 11\StudentInfoManage\WebContent\
目录 0 2013-05-24 12:33 11\StudentInfoManage\WebContent\me
文件 39 2013-05-24 10:08 11\StudentInfoManage\WebContent\me
目录 0 2013-05-24 12:33 11\StudentInfoManage\WebContent\WEB-INF\
目录 0 2013-05-24 12:33 11\StudentInfoManage\WebContent\WEB-INF\lib\
文件 188671 2013-05-24 10:09 11\StudentInfoManage\WebContent\WEB-INF\lib\commons-beanutils-1.7.0.jar
文件 571259 2013-05-24 10:09 11\StudentInfoManage\WebContent\WEB-INF\lib\commons-collections-3.2.jar
文件 175426 2013-05-24 10:09 11\StudentInfoManage\WebContent\WEB-INF\lib\commons-collections.jar
文件 279781 2013-05-24 10:09 11\StudentInfoManage\WebContent\WEB-INF\lib\commons-httpclient-3.0.1.jar
文件 261809 2013-05-24 10:09 11\StudentInfoManage\WebContent\WEB-INF\lib\commons-lang-2.4.jar
文件 38015 2013-05-24 10:09 11\StudentInfoManage\WebContent\WEB-INF\lib\commons-logging-1.0.4.jar
文件 77826 2013-05-24 10:09 11\StudentInfoManage\WebContent\WEB-INF\lib\ezmorph-1.0.3.jar
文件 148490 2013-05-24 10:09 11\StudentInfoManage\WebContent\WEB-INF\lib\json-lib-2.2.3-jdk15.jar
文件 446464 2013-05-24 10:09 11\StudentInfoManage\WebContent\WEB-INF\lib\mysql-connector-java-3.1.12-bin.jar
文件 3083 2013-05-24 10:36 11\StudentInfoManage\WebContent\WEB-INF\web.xm
文件 4784 2013-05-24 11:39 11\StudentInfoManage\WebContent\gradeInfoManage.jsp
目录 0 2013-05-24 12:33 11\StudentInfoManage\WebContent\images\
文件 187004 2013-05-24 10:09 11\StudentInfoManage\WebContent\images\login.jpg
文件 15105 2013-05-24 10:09 11\StudentInfoManage\WebContent\images\main.jpg
............此处省略622个文件信息
- 上一篇:commons.jar包
- 下一篇:Zxing二维码识别 android
相关资源
- JSP,SQL,MVC的选课系统
- 基于JSP的学生宿舍管理系统(源码 数
- JSP选课管理系统
- mysql jsp网站源码下载
- JSP做的化妆品商城
- Jsp购物车实例
- 基于JSP的校友信息管理系统(添加数
- 基于jsp的bbs论坛 非常详细
- java Servlet投票实例
- jsp oracle通讯录
- JSP学生信息管理系统 Mysql数据库
- 使用jsp servlet做的投票系统
- JSP登陆验证 实现JSP用户名 密码 验
- jsp基于servlet 图书馆管理系统
- jsp学生成绩管理系统.rar
- 在线考试系统源代码(jsp)
- 超级好的纯jsp写的聊天室
- JSP 网上购物网页项目
- JSP+mysql新闻发布系统.rar
- jsp 学生信息管理系统设计与实现
- jsp与SQL Server数据库实现的客户注册登
- 简易教学管理系统(jsp spring struts h
- 学生信息管理系统 JSP MySQL
- jsp ajax 三级联动菜单
- jsp新闻公告与最新消息系统(具备添
- JSP课程设计-留言本 jsp mysql tomcat实现
- jsp 做的 班级管理网站
- jsp 统计在线人数利用HttpSessionListene
- jsp mysql tomcat学生信息管理系统
- jsp成绩管理系统jsp servlet javabean
评论
共有 条评论