Database setup in tomcat

2003-03-24 Thread Jason Smartt
Hi, I am trying to set up a database connection pool using JDBC and MS Access. I initially just wrote a small servlet to do a login lookup to my database which worked fine and then proceeded onto the connection pool program (which I obtained from James Goodwill, Developing Java Servlets book). My

Re: Database setup in tomcat

2003-03-24 Thread p niemandt
Hi: Trying to roll your own DBCP is quite fun, but to get it working properly it does involve a lot of design, foresight, testing, and more testing. I would recommend rather use the DBCP that comes standard with Tomcat: It works, is stable, and is quite mature. Look at the Tomcat docs, or do a

Re: Database setup in tomcat

2003-03-24 Thread dwightHugget
On Monday 24 March 2003 14:00, Jason Smartt professed: Hi, I am trying to set up a database connection pool using JDBC and MS Access. I initially just wrote a small servlet to do a login lookup to my database which worked fine and then proceeded onto the connection pool program (which I