RE: DBCP config question

2009-08-28 Thread Martin Gainty
From: devli...@hanik.com > To: users@tomcat.apache.org > Subject: Re: DBCP config question > > its better to see if there is a way to do it in the JDBC url itself. > As soon as you set the defaultAutoCommit flag to a value, DBCP will > issue a getAutoCommit and possible setAutoCommit

Re: DBCP config question

2009-08-28 Thread Filip Hanik - Dev Lists
its better to see if there is a way to do it in the JDBC url itself. As soon as you set the defaultAutoCommit flag to a value, DBCP will issue a getAutoCommit and possible setAutoCommit each time you use the connection. Both calls may go back to the DB depending on how the driver implements it.