14 lines
257 B
Plaintext
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;
|
|
}
|
|
}
|
|
%> |