package com.wwcxy.dao;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import com.sun.org.apache.regexp.internal.recompile;
import com.wwcxy.entity.AdminEntity;
import com.wwcxy.entity.LendRecord;
import com.wwcxy.util.JdbcUtil;
public class LendRecordDao extends JdbcUtil{
//查询所有图书信息
public List<LendRecord> getAllLendRecordBypage(int page,int limit){
List<LendRecord> list = new ArrayList<LendRecord>();
Connection conn = this.getConnection();
PreparedStatement ps = null;
ResultSet rs = null;
String sql="select * from lendrecord limit ?,?";
try {
ps = conn.prepareStatement(sql);
ps.setInt(1, (page-1)*limit);
ps.setInt(2, limit);
rs = ps.executeQuery();
while(rs.next()){
LendRecord lr = new LendRecord();
lr.setLid(rs.getInt("lid"));
lr.setBid(rs.getInt("bid"));
lr.setBname(new LendRecordDao().getBnameBybid(rs.getInt("bid")));
lr.setCid(rs.getInt("cid"));
lr.setCname(new LendRecordDao().getCnameBycid(rs.getInt("cid")));
lr.setBorrowtime(rs.getString("borrowtime"));
lr.setDeadline(rs.getString("deadline"));
lr.setReturntime(rs.getString("returntime"));
lr.setStatus(rs.getString("status"));
list.add(lr);
}
} catch (SQLException e) {
e.printStackTrace();
}finally{
try {
this.close(conn, ps, rs);
} catch (SQLException e) {
e.printStackTrace();
}
}
return list;
}
//新增图书信息
public int addLr(LendRecord lr){
int row = 0;
Connection con=this.getConnection();
PreparedStatement ps=null;
String sql="insert into lendrecord"
+ "(lid,bid,cid,borrowtime,deadline,returntime,status) values(?,?,?,?,?,?,?)";
try {
ps=con.prepareStatement(sql);
ps.setInt(1,lr.getLid());
ps.setInt(2,lr.getBid());
ps.setInt(3,lr.getCid());
ps.setString(4,lr.getBorrowtime());
ps.setString(5,lr.getDeadline());
ps.setString(6, lr.getReturntime());
ps.setString(7,lr.getStatus());
row=ps.executeUpdate();
} catch (SQLException e) {
e.printStackTrace();
}finally{
try {
this.close(con, ps, null);
} catch (SQLException e) {
e.printStackTrace();
}
}
return row;
}
//根据lid修改图书信息
public int updateLrByLid(LendRecord lr){
int row = 0;
Connection con = this.getConnection();
PreparedStatement ps = null;
String sql = "update lendrecord set cid=?,borrowtime=?,returntime=?,status=? where lid=?";
try {
ps=con.prepareStatement(sql);
ps.setInt(1,lr.getCid());
ps.setString(2,lr.getBorrowtime());
ps.setString(3,lr.getReturntime());
ps.setString(4,lr.getStatus());
ps.setInt(5, lr.getLid());
row=ps.executeUpdate();
} catch (SQLException e) {
// TODO: handle exception
e.printStackTrace();
}finally{
try {
this.close(con, ps, null);
} catch (SQLException e) {
// TODO: handle exception
e.printStackTrace();
}
}
return row;
}
//删除图书信息
public int delLrByLid(int lid){
int row=0;
Connection con=this.getConnection();
PreparedStatement ps=null;
String sql="delete from lendrecord where lid=?";
try {
ps=con.prepareStatement(sql);
ps.setInt(1,lid);
row=ps.executeUpdate();
} catch (SQLException e) {
e.printStackTrace();
}finally{
try {
this.close(con, ps, null);
} catch (SQLException e) {
e.printStackTrace();
}
}
return row;
}
//根据cid查询图书信息
public List<LendRecord> getlrByCid(int cid ,int page,int limit){
List<LendRecord> list = new ArrayList<LendRecord>();
Connection con = this.getConnection();
PreparedStatement ps=null;
ResultSet rs=null;
String sql="select * from lendrecord where cid like ? limit ?,?";
try {
ps=con.prepareStatement(sql);
ps.setString(1, cid+"");
ps.setInt(2, (page-1)*limit);
ps.setInt(3, limit);
rs=ps.executeQuery();
while(rs.next()){
LendRecord lr = new LendRecord();
lr.setLid(rs.getInt("lid"));
lr.setBid(rs.getInt("bid"));
lr.setBname(new LendRecordDao().getBnameBybid(rs.getInt("bid")));
lr.setCid(rs.getInt("cid"));
lr.setCname(new LendRecordDao().getCnameBycid(rs.getInt("cid")));
lr.setBorrowtime(rs.getString("borrowtime"));
lr.setDeadline(rs.getString("deadline"));
lr.setReturntime(rs.getString("returntime"));
lr.setStatus(rs.getString("status"));
list.add(lr);
}
} catch (SQLException e) {
e.printStackTrace();
}finally{
try {
this.close(con, ps, rs);
} catch (SQLException e) {
e.printStackTrace();
}
}
return list;
}
//根据lid查询图书信息
public LendRecord getLrByLid(int lid){
LendRecord lendrecord = new LendRecord();
Connection con = this.getConnection();
PreparedStatement ps = null;
ResultSet rs = null;
String sql = "select * from lendrecord where lid = ?";
try {
ps = con.prepareStatement(sql);
ps.setInt(1, lid);
rs = ps.executeQuery();
while(rs.next()){
lendrecord.setLid(rs.getInt("lid"));
lendrecord.setBid(rs.getInt("bid"));
lendrecord.setBname(new LendRecordDao().getBnameBybid(rs.getInt("bid")));
lendrecord.setCid(rs.getInt("cid"));
lendrecord.setCname(new LendRecordDao().getCnameBycid(rs.getInt("cid")));
lendrecord.setBorrowtime(rs.getString("borrowtime"));
lendrecord.setDeadline(rs.getString("deadline"));
lendrecord.setReturntime(rs.getString("returntime"));
lendrecord.setStatus(rs.getString("status"));
}
} catch (SQLException e) {
e.printStackTrace();
} finally {
try {
this.close(con, ps, rs);
} catch (SQLException e) {
e.printStackTrace();
}
}
return lendrecord;
}
public int getLikeCount(int cid){
Connection conn = this.getConnection();
PreparedStatement pstmt = null;
ResultSet rs = null;
int count = 0;
String sql = "select count(*) from lendrecord where cid like ?";
try {
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, "%"+cid+"%");
rs = pstmt.executeQuery();
while(rs.next()){
count = rs.getInt("count(*)");
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
try {
rs.close();
pstmt.close();
conn.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
return count;
}
//借书
public int Borrowtime(int cid) {
int row = 0;
Connection con = this.getConnection();
PreparedStatement ps = null;
String sql = "insert into lendrecord (cid,borrowtime,status,deadline) values(?,?,?,?)";
SimpleDateFormat df = new SimpleDateFormat("HH:mm:ss");
SimpleDateFormat df1 = new SimpleDateFormat("yyyy-MM-dd");
String nowtime = df.format(new Date());
try {
ps = con.prepareStatement(sql);
ps.setInt(1, cid);
ps.setString(2, nowtime);
ps.setString(3, "未还书");
ps.setString(4, df1.format(new Date()));
row = ps.executeUpdate();
} catch (SQLException e) {
e.printStackTrace();
}finally{
try {
this.close(con, ps, null);
} catch (SQLException e) {
e.printStackTrace();
}
}
return row;
}
//查看是否借书成功
public int GetBorrowtime(int cid) {
Connection con = this.getConnection();
PreparedStatement ps = null;
ResultSet rs = null;
String sql = "select cid from lendrecord where status=?";
try {
ps = con.prepareStatement(sql);
ps.setString(1, "未还书");
rs = ps.executeQuery();
while(rs.next()){
if(cid == rs.getInt("cid")){
return 1; //已经借书成功
}
}
} catch (SQLException e) {
e.printStackTrace();
}finally{
try {
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
基于JSP+layui+mysql+servlet+javabean实现的图书馆管理系统 基于JSP+layui+mysql+servlet+javabean实现的图书馆管理系统 基于JSP+layui+mysql+servlet+javabean实现的图书馆管理系统 基于JSP+layui+mysql+servlet+javabean实现的图书馆管理系统 基于JSP+layui+mysql+servlet+javabean实现的图书馆管理系统 基于JSP+layui+mysql+servlet+javabean实现的图书馆管理系统 基于JSP+layui+mysql+servlet+javabean实现的图书馆管理系统 基于JSP+layui+mysql+servlet+javabean实现的图书馆管理系统 基于JSP+layui+mysql+servlet+javabean实现的图书馆管理系统 基于JSP+layui+mysql+servlet+javabean实现的图书馆管理系统 基于JSP+layui+mysql+servlet+javabean实现的图书馆管理系统 基于JSP
资源推荐
资源详情
资源评论
收起资源包目录
基于JSP+layui+mysql+servlet+javabean实现的图书馆管理系统.zip (227个子文件)
.classpath 661B
org.eclipse.wst.common.component 473B
org.eclipse.wst.jsdt.ui.superType.container 49B
layui.css 68KB
layer.css 14KB
index.css 11KB
sccl.css 10KB
layui.mobile.css 10KB
laydate.css 7KB
demo.css 3KB
iconfont.css 2KB
code.css 1KB
add.css 176B
iconfont.eot 40KB
iconfont.eot 11KB
59.gif 10KB
22.gif 10KB
loading.gif 8KB
24.gif 8KB
13.gif 7KB
16.gif 7KB
39.gif 6KB
64.gif 6KB
63.gif 6KB
50.gif 6KB
loading-0.gif 6KB
4.gif 6KB
1.gif 5KB
42.gif 5KB
71.gif 5KB
21.gif 5KB
20.gif 5KB
29.gif 5KB
70.gif 4KB
5.gif 4KB
17.gif 4KB
27.gif 4KB
9.gif 4KB
44.gif 4KB
11.gif 4KB
8.gif 4KB
3.gif 4KB
loading-b.gif 4KB
23.gif 4KB
34.gif 4KB
41.gif 4KB
38.gif 4KB
65.gif 3KB
32.gif 3KB
45.gif 3KB
7.gif 3KB
12.gif 3KB
26.gif 3KB
60.gif 3KB
2.gif 3KB
40.gif 3KB
25.gif 3KB
19.gif 3KB
66.gif 3KB
18.gif 3KB
46.gif 3KB
10.gif 3KB
28.gif 3KB
51.gif 3KB
57.gif 3KB
67.gif 3KB
0.gif 3KB
48.gif 3KB
43.gif 3KB
30.gif 2KB
61.gif 2KB
33.gif 2KB
69.gif 2KB
14.gif 2KB
47.gif 2KB
36.gif 2KB
49.gif 2KB
58.gif 2KB
6.gif 2KB
54.gif 2KB
53.gif 2KB
56.gif 2KB
62.gif 2KB
31.gif 2KB
55.gif 2KB
35.gif 2KB
15.gif 2KB
loading-2.gif 2KB
37.gif 1KB
68.gif 1KB
52.gif 777B
loading-s.gif 763B
loading-1.gif 701B
.gitignore 10B
demo.html 8KB
jackson-databind-2.9.7.jar 1.29MB
mysql-connector-java-5.1.26.jar 836KB
standard.jar 384KB
jackson-core-2.9.7.jar 316KB
commons-lang-2.6.jar 278KB
共 227 条
- 1
- 2
- 3
资源评论
辣椒种子
- 粉丝: 4234
- 资源: 5837
下载权益
C知道特权
VIP文章
课程特权
开通VIP
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- G309菜篮三维最终_3.x_t..bin
- 基于xilinx k7 325t实现的千兆网udp协议,只需要设置好IP,端口,就可以直接给数据,基本等同于透传,可以不用管底层协议 可以 # FPGA 实现udp模块说明 ## udp-proto
- Keil C51 插件 检测变量名引用不统一
- jsp代码技术的实现与结果
- 基于 PyTorch 实现的生成对抗网络(GAN)代码,用于特定的图像生成任务(斑马和马的图像转换相关任务)
- 一个基于递归下降解析算法的C++程序
- mysql和sqlserver语法有什么区别.txt
- linux常用命令大全.txt
- linux常用命令大全.txt
- linux常用命令大全.txt
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功