Re: database application

2008-08-14 Thread André Warnier
Brantley Hobbs wrote: Cue Charles Caldarale hammering someone for not providing a Tomcat version in 3...2...1... Actually, I think he may have missed this one as he was hammering someone else for using a packaged Tomcat instead of the official distribution. ;-) 3..2..1..

Re: database application

2008-08-14 Thread Brantley Hobbs
LOL Absolutely no problem. Someone has to do it! B. Caldarale, Charles R wrote: From: Brantley Hobbs [mailto:[EMAIL PROTECTED] Subject: Re: database application Cue Charles Caldarale hammering someone for not providing a Tomcat version in 3...2...1... (Sorry I'm late, our marvelous

Re: database application

2008-08-14 Thread David Smith
Ok... I'm assuming you are using tomcat 5.0.x given they way you configured your datasource. If this isn't true, you might want to get a copy of the tomcat-docs webapp for your particular version of tomcat. The way JDBC connections are configured changed with tomcat 5.5.x and 6.0.x.

Re: database application

2008-08-13 Thread Brantley Hobbs
Cue Charles Caldarale hammering someone for not providing a Tomcat version in 3...2...1... Seriously, Eleonora...You should read here: http://tomcat.apache.org/tomcat-5.5-doc/jndi-datasource-examples-howto.html Note particularly: *Please note that JNDI resource configuration has changed

RE: database application

2008-08-13 Thread Caldarale, Charles R
From: Brantley Hobbs [mailto:[EMAIL PROTECTED] Subject: Re: database application Cue Charles Caldarale hammering someone for not providing a Tomcat version in 3...2...1... (Sorry I'm late, our marvelous corporate e-mail server didn't let the original message through.) Being precise is one

RE: database application

2008-08-13 Thread Martin Gainty
This is a quick reiteration of key points found in the link below.. make sure you provide the GRANT for insert/select/update to the user you will be using e.g. mysql GRANT ALL PRIVILEGES ON *.* TO [EMAIL PROTECTED] - IDENTIFIED BY 'javadude' WITH GRANT OPTION; mysql create database