OracleConnectionCacheImpl connPool = new OracleConnectionCacheImpl();
connPool.setURL(url);
connPool.setUser(username);
connPool.setPassword(password);
connPool.setMaxLimit(size);Connection conn = connPool.getConnection();try{
  conn.createStatment();
  st.executeQuery(sql);
  .
  .
  .
catch(SQLException e){}finnally{//这句有必要写吗?或者有什么其他的处理方法?
   conn.close();
   .
   .
   .
}
另外,在使用这样的方式后,容易出现“关闭的连接”的错误。不知是什么原因。