2018-06-03 22:26:41 +08:00

14 lines
257 B
Plaintext

<%
}catch(Exception e){
if(Sqlca!=null) Sqlca.rollback();
e.printStackTrace();
ARE.getLog().error(e.getMessage(),e);
throw e;
}finally{
if(Sqlca!=null){
Sqlca.commit();
Sqlca.disConnect();
Sqlca = null;
}
}
%>