posted 21 years ago
There is no "Connection Pooling" in servlets.
Don't get me wrong, you can use Connection Pools, but you can either use the Connection Pool provided by the Driver vendor or a third party provider, or you can use Connection Pooling provided by the Application Server. There is no implicit Connection Pooling in Servlets or Servlet Containers.
Dave