丶子非鱼
2017-03-05 10:11
else if(OPERATION_DELETE.equals(in.toUpperCase())
||OPERATION_DELETE.substring(0, 1).equals(in.toUpperCase())){
System.out.println("输入需要删除女神的ID:");
Scanner s=new Scanner(System.in);
try {
action.del(Integer.valueOf(s.nextInt()));
System.out.println("删除成功");
} catch (NumberFormatException e) {
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println("请输入数字");
} catch (SQLException e) {
// TODO Auto-generated catch block
System.out.println("输入的ID不存在 重新输入");
}
}
删除之前先查询一次,如果没有提示没有此记录,有的话删除,完事
JDBC之 “ 对岸的女孩看过来”
99327 学习 · 856 问题
相似问题