Re: JDBC Connection pooling

2003-01-16 Thread Martin Jacobson
Nathan McMinn wrote: When trying to get a connection pool set up, tomcat spits this exception back out. Nowhere in the code do I reference this class. Can anyone point me to a good HOWTO on connection pooling in tomcat 4.0.6? TyrexDataSourceFactory: Cannot create DataSource, Exception

Re: JDBC Connection pooling

2003-01-16 Thread Nathan McMinn
He he, I'd love to move to 4.1.18, but I get the most bizzare problems when I try to do it. see http://www.experts-exchange.com/Web/Web_Languages/JSP/Q_20456477.html for details if you are interested. --Nathan McMinn Nathan McMinn wrote: When trying to get a connection pool set up, tomcat

Re: JDBC Connection pooling

2003-01-15 Thread David Boyer
For this particular error, the Tomcat classloader documentation would probably be your best bet. [EMAIL PROTECTED] 01/15/03 02:24PM When trying to get a connection pool set up, tomcat spits this exception back out. Nowhere in the code do I reference this class. Can anyone point me to a good

Re: JDBC Connection pooling

2003-01-15 Thread Nathan McMinn
] To: [EMAIL PROTECTED] Sent: Wednesday, January 15, 2003 2:27 PM Subject: Re: JDBC Connection pooling For this particular error, the Tomcat classloader documentation would probably be your best bet. [EMAIL PROTECTED] 01/15/03 02:24PM When trying to get a connection pool set up, tomcat spits

Re: JDBC Connection pooling

2003-01-15 Thread David Boyer
[EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, January 15, 2003 2:27 PM Subject: Re: JDBC Connection pooling For this particular error, the Tomcat classloader documentation would probably be your best bet. [EMAIL PROTECTED] 01/15/03 02:24PM When trying to get a connection pool set

Re: JDBC Connection pooling

2003-01-15 Thread Nathan McMinn
/ResourceParams /Context - Original Message - From: David Boyer [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, January 15, 2003 3:01 PM Subject: Re: JDBC Connection pooling The error you mention suggests Tyrex cannot find the hsql jdbc driver. The Class Loader How

Re: JDBC Connection pooling

2003-01-15 Thread Nathan McMinn
) at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1125 ) at java.lang.Thread.run(Thread.java:536) - Original Message - From: Nathan McMinn [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, January 15, 2003 3:19 PM Subject: Re: JDBC Connection pooling

Re: JDBC Connection Pooling

2001-02-19 Thread Corey A. Johnson
sure does. you need a pool manager i believe though. check out: http://www.codestudio.com/PoolMan/index.shtml Cj "Nazzaro, Mark (Mark)" wrote: Does anyone know if Tomcat supports JDBC connection Pooling similar to WebSphere? Any information would be appreciated. Thank you, Mark

Re: JDBC Connection Pooling

2001-02-19 Thread Shahed Ali
Not that I know of, but if you need a good db connection pool, look at the one from javaexchange.com I think its called DBconnectionBroker. Seems to be better than poolman. Regards Shahed. - To unsubscribe, e-mail: [EMAIL

RE: JDBC Connection Pooling

2001-02-19 Thread Michel Lehon
PROTECTED] Subject: Re: JDBC Connection Pooling Not that I know of, but if you need a good db connection pool, look at the one from javaexchange.com I think its called DBconnectionBroker. Seems to be better than poolman. Regards Shahed

RE: JDBC Connection Pooling

2001-02-19 Thread Etienne Baert
PROTECTED]' Subject: Re: JDBC Connection Pooling JDBC connection pooling ! Tomcat do not provide resource pooling ? I think ? I know that some JDBC driver support pooling in native !!! Or you can use your own pooling mechanism, use minerva, poolman, jpool Christophe

Re: JDBC Connection Pooling

2001-02-19 Thread Alex Fernández
There are some other Jakarta products that provide Connection Pooling. You can use Struts, you can use Turbine. Not part of Tomcat, but nice dressings (I haven't used them though). Right now the Jakarta folks are deciding if it's feasible to provide some sort of general utility library, so each

RE: JDBC Connection Pooling

2001-02-19 Thread Cato, Christopher
In the book "Java Server Pages" by Hans Bergstedt, O'Reilly - ISBN 1-56592-746-X it says that it is possible through using the following interfaces: javax.sql.DataSource javax.sql.ConnectionPoolDataSource javax.sql.PooledConnection This is all part of JDBC 2.0 or rather the JDBC 2.0 Optional