package cn.edu.lingnan.dao;

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

import cn.edu.lingnan.model.Company;
import cn.edu.lingnan.model.PageBean;
import cn.edu.lingnan.util.StringUtil;

public class CompanyDao {

	public ResultSet companyList(Connection con,PageBean pageBean,Company company)throws Exception{
		StringBuffer sb=new StringBuffer("select * from t_company");
		if(company!=null && StringUtil.isNotEmpty(company.getCompanyName())){
			sb.append(" and companyName like '%"+company.getCompanyName()+"%'");
		}
		if(pageBean!=null){
			sb.append(" limit "+pageBean.getStart()+","+pageBean.getRows());
		}
		PreparedStatement pstmt=con.prepareStatement(sb.toString().replaceFirst("and", "where"));
		return pstmt.executeQuery();
	}
	
	public int companyCount(Connection con,Company company)throws Exception{
		StringBuffer sb=new StringBuffer("select count(*) as total from t_company");
		if(StringUtil.isNotEmpty(company.getCompanyName())){
			sb.append(" and companyName like '%"+company.getCompanyName()+"%'");
		}
		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 (1,3,5)
	 * @param con
	 * @param delIds
	 * @return
	 * @throws Exception
	 */
	public int companyDelete(Connection con,String delIds)throws Exception{
		String sql="delete from t_company where id in("+delIds+")";
		PreparedStatement pstmt=con.prepareStatement(sql);
		return pstmt.executeUpdate();
	}
	
	public int companyAdd(Connection con,Company company)throws Exception{
		String sql="insert into t_company values(null,?,?)";
		PreparedStatement pstmt=con.prepareStatement(sql);
		pstmt.setString(1, company.getCompanyName());
		pstmt.setString(2, company.getCompanyDesc());
		return pstmt.executeUpdate();
	}
	
	public int companyModify(Connection con,Company company)throws Exception{
		String sql="update t_company set companyName=?,companyDesc=? where id=?";
		PreparedStatement pstmt=con.prepareStatement(sql);
		pstmt.setString(1, company.getCompanyName());
		pstmt.setString(2, company.getCompanyDesc());
		pstmt.setInt(3, company.getId());
		return pstmt.executeUpdate();
	}

	
}
最近下载更多
北方菜  LV11 2022年12月21日
飞翔的面包片  LV12 2022年12月12日
yy0987  LV5 2022年8月7日
AlanLi  LV18 2022年8月2日
不忘初心砥砺前行  LV7 2022年6月30日
酒酒清欢  LV8 2022年6月15日
CHENHAOJUDA  LV10 2022年6月14日
v6ulfWZ7pVjbex  LV1 2022年6月11日
805587759  LV8 2022年4月18日
xhjshy  LV2 2022年4月13日
最近浏览更多
tartaglia  LV2 4月16日
a2831244768  LV4 4月13日
fuyouou  LV5 3月14日
songsmm  LV1 3月11日
pumpkin_77 1月20日
暂无贡献等级
asddwh  LV12 2023年12月26日
暂无贡献等级
117558 2023年11月27日
暂无贡献等级
xuhaoa  LV2 2023年11月10日
hj1172788262  LV5 2023年10月25日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友