public boolean deleteReader(String id){
boolean yn = false;
Connection conn = null;
PreparedStatement ps = null;
try {
conn = new dbconnect().getConnection();
String sql = "delete from t_reader where reader_id=? ";
ps = conn.prepareStatement(sql);
int index = 0;
ps.setString(++index, id);