首页>代码>java的swing实例-图书管理系统,欢迎学习>/BookManger/src/com/java/dao/BookTypeDao.java
package com.java.dao;


import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;

import com.java.model.BookType;
import com.java.util.StringUtil;

public class BookTypeDao {

	public int bookTypeAdd(Connection con,BookType bookType) throws Exception{
		String sql="insert into t_bookType values(null,?,?)";
		PreparedStatement pstmt=con.prepareStatement(sql);
		pstmt.setString(1, bookType.getBookTypeName());
		pstmt.setString(2, bookType.getBookTypeDesc());
		return pstmt.executeUpdate();
	}
	
	public ResultSet bookTypeList(Connection con,BookType bookType) throws Exception{	
		StringBuffer sb=new StringBuffer("select * from t_bookType");
		if(StringUtil.isNotEmpty(bookType.getBookTypeName())){
			sb.append(" and bookTypeName like '%"+bookType.getBookTypeName()+"%'");
		}
		PreparedStatement pstmt=con.prepareStatement(sb.toString().replaceFirst("and", "where"));
		return pstmt.executeQuery();
	}
	
	public int bookTypeDelete(Connection con,String id)throws Exception{
		String sql="delete from t_bookType where id=?";
		PreparedStatement pstmt=con.prepareStatement(sql);
		pstmt.setString(1, id);
		return pstmt.executeUpdate();
	}
	
	public int bookTypeModify(Connection con,BookType bookType)throws Exception{
		String sql="update t_bookType set bookTypeName=?,bookTypeDesc=? where id=?";
		PreparedStatement pstmt=con.prepareStatement(sql);
		pstmt.setString(1, bookType.getBookTypeName());
		pstmt.setString(2, bookType.getBookTypeDesc());
		pstmt.setInt(3, bookType.getId());
		return pstmt.executeUpdate();
	}
}
最近下载更多
微信网友_6445756515635200  LV3 2023年12月18日
hahaha_123  LV2 2023年6月29日
你们的代码都是我的了  LV16 2023年6月13日
nn1349017  LV5 2023年5月30日
122378  LV3 2022年12月14日
wkq888  LV17 2022年6月18日
hebe灬  LV5 2022年5月16日
与尔同消万古愁  LV2 2021年11月28日
SuperShot  LV13 2021年6月22日
767299026  LV8 2021年6月20日
最近浏览更多
无异偶  LV2 7月21日
郑郭辉 6月3日
暂无贡献等级
周青松  LV3 3月18日
jiayongchao258  LV9 2023年12月28日
lshlsh 2023年12月25日
暂无贡献等级
微信网友_6445756515635200  LV3 2023年12月18日
Aban-beautiful 2023年12月16日
暂无贡献等级
3993zby  LV2 2023年12月15日
李朝磊  LV18 2023年12月3日
zm111326  LV1 2023年10月25日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友