Re: TOMCAT + DATASOURCE + CONNECTION POOL

2005-12-12 Thread ALEX HYDE
Hey, I think though I'm not 100% When you declare the datasource in web.xml (or is Server.xml?) it creates a pool factory for you under the covers (I think using Jakarta DBCP). When you use JNDI look-up it asks the factory for a pool. You are then magically using a pool. You

RE: TOMCAT + DATASOURCE + CONNECTION POOL

2005-12-12 Thread Prathibha, Bharathi
Hi Karthik, Context path=/servlets-examples debug=5 reloadable=true crossContext=true Resource name=jdbc/datasource_test auth=Container type=javax.sql.DataSource maxActive=100 maxIdle=30 maxWait=1 username=root password=admin driverClassName=com.mysql.jdbc.Driver