标签:oracle
ORA-12518: TNS:listener could not hand off client connection
这种错误一般是在测试数据库并发性的,多个用户的,
后台用servlet方法执行个update ,只不过updated的记录为1100个,后台一直报这个错误,
我也更改了oracle的连接数为1200,但是当执行到356行的时候,还是报上述的错误
解决方案:程序代码的问题,执行更新后,没有关闭连接,囧,切记关闭连接
public boolean update(Department e) { boolean flag = true ; String updateSQL = "update department set sort="+e.sort+" where id = " + e.getId(); try { <span style="white-space:pre"> </span>stmt.executeUpdate(updateSQL); } catch (Exception e1) { e1.printStackTrace(); flag = false ; } return flag ; }
public boolean update(Department e) { boolean flag = true ; String updateSQL = "update department set sort="+e.sort+" where id = " + e.getId(); try { stmt.executeUpdate(updateSQL); } catch (Exception e1) { e1.printStackTrace(); flag = false ; }finally{ stmt.close; //切记关闭 conn.close; //切记关闭 } return flag ; }
标签:oracle
原文地址:http://blog.csdn.net/estelle_belle/article/details/40655227