My application is not using any form of connection pooling, I'm working directly with connections. The application does mainly short, simple queries. From the log I can see that it frequently opens and closes connections, often performing only a single select of one or a few rows in between. These take typically ~100ms (including opening and closing the connection).
There are countless articles and blog entries on how connection pooling improves application performance, but they all seem to be rather old (5 or more years).
Does connection pooling still provide a reasonable performance benefit or had it become obsolete. I'm using SQLServer 2008 with Microsofts JDBC driver version 3.0, if that matters.
Results/Update: Many things happened since I have asked this question (we switches JDBC driver and lots of other stuff). At some time I did lots of refactorings and other stuff and at that apportunity also added connection pooling to that application. With connections pooling some queries execute now faster than the log timestamp granularity can measure (less than 16ms I believe).
So in conclusion, yes connection pooling is still worth the effort if you need to connect/disconnect frequently.