jFinal的model增删该查

package com.bytech.model;

import java.util.List;

import com.jfinal.plugin.activerecord.Db;
import com.jfinal.plugin.activerecord.Model;

public class Customer extends Model<Customer> {

	public static final Customer dao=new Customer();
	public Customer() {
		// TODO Auto-generated constructor stub
	}
	
	public List<Customer> queryCustomerList(){
		try {
			String sql="select * from customer ";
			return dao.find(sql);
		} catch (Exception e) {
			e.printStackTrace();
			return null;
		}
	}
	//根据客户id查出一条数据
	public Customer queryCustomerById(String CustomerId){
		try {
			String sql="select * from customer where CustomerId=?";
			return dao.findFirst(sql, CustomerId);
		} catch (Exception e) {
			e.printStackTrace();
			return null;
		}
	}
	//
	public Customer addCustomer(String CustomerName,String Address,String Contact,String Annotate){
		try{
			
			boolean bret = dao.clear().
		            set("CustomerName",CustomerName).
		            set("Address",Address).
		            set("Contact",Contact).
		            set("Annotate",Annotate).save();
		//这些数据直接加入数据中
		//id则自动递增
		if(bret)
		{
			int id = dao.getInt("CustomerId");
			return dao.findById(id);
		}
		else
		{
			return null;
		}
		}catch(Exception ex)
		{
			ex.printStackTrace();
			return null;
		}
	}	
	//修改
	public Customer editCustomer(String CustomerId,String CustomerName,String Address,String Contact,String Annotate){
		try {
			String update="UPDATE customer set CustomerName=?,"
					+ "Address=?,Contact=?,Annotate=? where CustomerId=?";
			int iRet=Db.update(update,CustomerName,Address,Contact,Annotate,CustomerId);
			if(iRet > 0)
			{
				return dao.findById(CustomerId);
			}
			else
			{
				return null;
			}
		}catch(Exception ex)
		{
			ex.printStackTrace();
			return null;		
		}
		
	}
	//删除
	public boolean delectCustomer(String CustomerId){
		try {
			String delsql="DELETE FROM customer WHERE CustomerId=?";
			int iRet=Db.update(delsql, CustomerId);
			if(iRet > 0)
			{
				return true;
			}
			else
			{
				return false;
			}
		} catch (Exception e) {
			e.printStackTrace();
			return false;
		}
	}
	
	
	
}

  • 4
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值