RE: Tomcat 4.0.x JDBC connection pooling

2003-01-17 Thread Roberts, Eric
List Subject: RE: Tomcat 4.0.x JDBC connection pooling Thanks Eric! But with Tomcat 4.0.x I don't have things like MaxActive, MinIdle and other parameters... 4.0 documentation doesn't tell anything about this. It seems to me that I have to migrate to 4.1.x to use the pool and such parameters. Am I

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

Tomcat 4.0.x JDBC connection pooling

2003-01-16 Thread Luca Cremonini
the connection with conn.close(); instead of releasing it to the pool? - What are the improvement in Tomcat 1.1.x about JDBC connection pooling? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Tomcat 4.0.x JDBC connection pooling

2003-01-16 Thread Roberts, Eric
Cremonini [mailto:[EMAIL PROTECTED]] Sent: Donnerstag, 16. Jänner 2003 17:17 To: [EMAIL PROTECTED] Subject: Tomcat 4.0.x JDBC connection pooling I'm using JDBC connection with Tomcat 4.0 as shown in Tomcat4.0 online documentation (http://jakarta.apache.org/tomcat/tomcat-4.0-doc/jndi-resources

RE: Tomcat 4.0.x JDBC connection pooling

2003-01-16 Thread Luca Cremonini
] Eric.Roberts@ Cc: one.at Oggetto: RE: Tomcat 4.0.x JDBC connection pooling

JDBC Connection pooling

2003-01-15 Thread Nathan McMinn
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-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

JDBC connection pooling, update

2003-01-15 Thread Nathan McMinn
First, thanks to those that pointed me in the right direction. I just have one more problem with connection pooling. Now when I request a connection from the connection pool, I get the following exception: java.sql.SQLException: No suitable driver pretty standard exception, not really that

RE: JNDI JDBC COnnection pooling problem...

2002-08-13 Thread Alexander Wallace
: Alexander Wallace [mailto:[EMAIL PROTECTED]] Sent: Monday, August 12, 2002 11:33 AM To: [EMAIL PROTECTED] Subject: JNDI JDBC COnnection pooling problem... Hello. This has to be a very simple one for those who know. I'm getting a java.lang.NullPointerException in my app

JNDI JDBC COnnection pooling problem...

2002-08-12 Thread Alexander Wallace
Hello. This has to be a very simple one for those who know. I'm getting a java.lang.NullPointerException in my app, in the second line here: Context ctx = (Context) new InitialContext().lookup(java:comp/env); conn = ((DataSource) ctx.lookup(jdbc/pgsql)).getConnection(); **Error happens here**

RE: JNDI JDBC COnnection pooling problem...

2002-08-12 Thread Andrew
] Subject: JNDI JDBC COnnection pooling problem... Hello. This has to be a very simple one for those who know. I'm getting a java.lang.NullPointerException in my app, in the second line here: Context ctx = (Context) new InitialContext().lookup(java:comp/env); conn = ((DataSource) ctx.lookup

JNDI InitialContext JDBC connection pooling not working

2001-11-25 Thread Marko Asplund
connections a 1000 times takes about 60 seconds using unpooled connections and it takes about the same time using a data source obtained via JNDI API whereas using OracleConnectionPoolDataSource it takes about 1 second. does Tomcat 4 implement JDBC connection pooling by itself or do i have to configure TC

JDBC Connection Pooling

2001-02-19 Thread Nazzaro, Mark (Mark)
Does anyone know if Tomcat supports JDBC connection Pooling similar to WebSphere? Any information would be appreciated. Thank you, Mark Nazzaro eAssociate Lucent Technologies (908) 559-6105 [EMAIL PROTECTED] - To unsubscribe

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 y

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
Two projects under Apache provide JDBC Connection pooling: Turbine Struts. I think you can use the one from Turbine outside the framwork without any problems. Michel. -Original Message- From: Shahed Ali [mailto:[EMAIL PROTECTED]] Sent: Monday, 19 February, 2001 16:35 To: [EMAIL

RE: JDBC Connection Pooling

2001-02-19 Thread Etienne Baert
Please, have a look on Turbine at http://java.apache.org there were a lot of discussions in the related groups about JDBC connection pooling. Etienne -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: lundi 19 fevrier 2001 16:49 To: [EMAIL PROTECTED] Cc: '[EMAIL

Re: JDBC Connection Pooling

2001-02-19 Thread Alex Fernández
feature can be used on its own. If you want to watch it live, tune it to [EMAIL PROTECTED] Un saludo, Alex. [EMAIL PROTECTED] wrote: JDBC connection pooling ! Tomcat do not provide resource pooling ? I think ? I know that some JDBC driver support pooling in native !!! Or you can

RE: JDBC Connection Pooling

2001-02-19 Thread Cato, Christopher
zaro, Mark (Mark) [mailto:[EMAIL PROTECTED]] Sent: den 19 februari 2001 16:35 To: '[EMAIL PROTECTED]' Subject: JDBC Connection Pooling Does anyone know if Tomcat supports JDBC connection Pooling similar to WebSphere? Any information would be appreciated. Thank you, Mark Nazzaro