8182838485868788899091
System.out.println(rs[0]+","+rs[1]); /* 提交事务 */ transaction.commit(); }catch(Exception e){ /* 回退事务 */ transaction.rollback(); throw e; }finally{ /* 关闭事务 */ transaction.close(); }
132133134135136137138139140141142
/* 提交事务 */ transaction.commit(); }catch(Exception e){ /* 回退事务 */ transaction.rollback(); throw e; }finally{ /* 关闭事务 */ transaction.close(); }
177178179180181182183184185186187
220221222223224225226227228229230