1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
| package com.oy.online.JDBC1.DAO;
import com.oy.online.JDBC1.bean.Customer;
import java.sql.Connection; import java.sql.Date; import java.util.List;
public class CustomerDAOImpI extends BaseDAO implements CustomerDAO { @Override public void insert(Connection conn, Customer cust) { String sql = "insert into customers(name,email,birth)values(?,?,?)"; update(conn,sql,cust.getName(),cust.getEamil(),cust.getBirth()); }
@Override public void deletById(Connection conn, int id) { String sql = "delete from customers where id = ?"; update(conn,sql, id); }
@Override public void update(Connection conn, Customer cust) { String sql = "update customers set name = ? , email = ?, birth = ? where id = ?"; update(conn, sql, cust.getName(),cust.getEamil(),cust.getBirth(),cust.getId()); }
@Override public Customer getCustomerById(Connection conn, int id) { String sql = "select id,name,email,birth from customers where id = ?"; Customer customer = getInstance(conn,Customer.class, sql,id); return customer; }
@Override public List<Customer> getAll(Connection conn) { String sql = "select id ,name, email, birth from customers "; List<Customer> list = getForList(conn, Customer.class, sql); return list; }
@Override public Long getCount(Connection conn) { String sql = "select count(*) from customers"; return getValue(conn, sql); }
@Override public Date getMaxBirth(Connection conn) { String sql = "select max(birth) from customers"; return getValue(conn, sql); } }
|