RE: tomcat 4.0.3 and No suitable driver SQLException - SOLVED

2002-05-29 Thread Chen, Dean (Zhun)
-- From: Jacob Kjome [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 28, 2002 8:05 PM To: Tomcat Users List Subject: RE: tomcat 4.0.3 and No suitable driver SQLException Some of the parameter names seem to have changed. I suggest grabbing a recent nightly build of Tomcat 4.1 and following

RE: tomcat 4.0.3 and No suitable driver SQLException

2002-05-28 Thread Jacob Kjome
Some of the parameter names seem to have changed. I suggest grabbing a recent nightly build of Tomcat 4.1 and following the instructions here: http://marc.theaimsgroup.com/?l=tomcat-user&m=102242646003357&w=2 There I point to two other messages that I sent to the list and reference the origina

RE: tomcat 4.0.3 and No suitable driver SQLException

2002-05-28 Thread Chen, Dean (Zhun)
I was able to connect by doing: Class.forName("com.sybase.jdbc2.jdbc.SybDriver"); conn = DriverManager.getConnection(); However, still doesn't work if I do ds.getConnection(); How can I check to see if the datasource is loaded correctly besides checking if it's null or not. Thanks, Dean C