为啥删除不了!!!
else if(OPERATION_DELETE.equals(in.toUpperCase())||
OPERATION_DELETE.subSequence(0, 1).equals(in.toUpperCase())||
OPERATION_DELETE.equals(prenious))
{
prenious="OPERATION_DELETE";
if(1==step){
System.out.println("请输入你要删除的ID:");
}else if(2==step){
try {
action.del(Long.parseLong(in));
System.out.println("删除成功!");
} catch (NumberFormatException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
}
if(OPERATION_DELETE.equals(prenious)){
step++;
}
}