RE: SOLVED: Re: MySQL Hell (OT)

2003-01-30 Thread Ralph Einfeldt
, January 29, 2003 6:14 PM To: Tomcat Users List Subject: SOLVED: Re: MySQL Hell (OT) The package from the ebuild has apparently been repackaged into the org.gjt.mm.mysql package. - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: MySQL Hell

2003-01-29 Thread Erik Price
Jacob Kjome wrote: Hello Mehdi, If you are using DBCP connection pooling, your driver *must* exist in CATALINA_HOME/common/lib. This is because the DBCP libraries exist in common/lib and the fact that classes from common/lib do not have access to the child classloader in WEB-INF/lib.

Re: MySQL Hell

2003-01-29 Thread Henning Heil
Erik, a.f.a.i.k. the driver has to be added to the classpath (I did it like that and it works fine.) rgds, Henning Erik Price wrote: Jacob Kjome wrote: Hello Mehdi, If you are using DBCP connection pooling, your driver *must* exist in CATALINA_HOME/common/lib. This is because the DBCP

SOLVED: Re: MySQL Hell (OT)

2003-01-29 Thread Erik Price
Jacob Kjome wrote: Hello Erik, If you aren't using DBCP, then you can ignore all the stuff about the driver needing to be in common/lib. The only reason it needs to be there is for DBCP to have access to the driver. As far as why, after a restart, it doesn't work in either place, I have no

Re: MySQL Hell

2003-01-29 Thread Anthony Marlowe
Hi, What Henning did OK, I have the driver in my ..server/lib and works also. Tony On Wednesday, Jan 29, 2003, at 17:02 Europe/Berlin, Henning Heil wrote: Erik, a.f.a.i.k. the driver has to be added to the classpath (I did it like that and it works fine.) rgds, Henning Erik Price wrote:

RE: MySQL Hell

2003-01-22 Thread Barney Hamish
I'd suggest looking at the comments in the examples for DBCP about how the examples need to be run. The required JDBC driver needs to be pre-loaded for it to work. If you have any further questions you should probably send them to the commons mailing list. Hamish -Original Message-

RE: MySQL Hell

2003-01-22 Thread Jason Pyeron
We have encountered strange results when drivers are loaded in the WEB-INF folders we reccommend having the sysadmin putting them in the TOMCAT_HOME/common/lib folder -jason pyeron On Wed, 22 Jan 2003, Barney Hamish wrote: I'd suggest looking at the comments in the examples for DBCP about

Re: MySQL Hell

2003-01-22 Thread mwm
: Wednesday, January 22, 2003 3:23 PM Subject: RE: MySQL Hell We have encountered strange results when drivers are loaded in the WEB-INF folders we reccommend having the sysadmin putting them in the TOMCAT_HOME/common/lib folder -jason pyeron On Wed, 22 Jan 2003, Barney Hamish wrote: I'd

Re: MySQL Hell

2003-01-22 Thread Mehdi . Nejad
] rphy.co.ukcc: Subject: Re: MySQL Hell 22/01/2003 15:28

Re: MySQL Hell

2003-01-22 Thread Jason Pyeron
: Re: MySQL Hell 22/01/2003 15:28 Please respond

Re: MySQL Hell

2003-01-22 Thread Jacob Kjome
Hello Mehdi, If you are using DBCP connection pooling, your driver *must* exist in CATALINA_HOME/common/lib. This is because the DBCP libraries exist in common/lib and the fact that classes from common/lib do not have access to the child classloader in WEB-INF/lib. However, your classes in