使用dbcp连接池Insert成功但是查询无记录
查询失败
[解决办法]
public Connection getConn() {
Connection con = null;
if (DS!= null) {
try {
con = DS.getConnection();
} catch (Exception e) {
e.printStackTrace(System.err);
}
try {
con.setAutoCommit(false);//这里设置了自动提交为false
} catch (SQLException e) {
e.printStackTrace();
}
return con;
}
return con;
}