CallableStatement cStmt
finally {
if (rs != null) {
rs.close();
rs = null;
}
if (sqlStmt != null) {
//cStmt.close(); 这就是100句
//cStmt=null;
}
Pool.close(conn);
}
如果不注释掉
就提示
java.sql.SQLException: Already closed.
at (testJsp.java:100)
------解决方案--------------------
不好意思,我的写反了,晕死