try {
con=dbUtil.getCon();
int deleteReturnNum=bookTypeDao.deteleBookType(con, id);
} catch (Exception e) {
e.printStackTrace();
}finally{
dbUtil.closeCon(con);
}
唉,无奈了,这么重要,竟然总忘记finally关资源、、
try {
con=dbUtil.getCon();
int deleteReturnNum=bookTypeDao.deteleBookType(con, id);
} catch (Exception e) {
e.printStackTrace();
}finally{
dbUtil.closeCon(con);
}
唉,无奈了,这么重要,竟然总忘记finally关资源、、