RE: No Suitable Driver Problem

2004-04-09 Thread Daniel Huang
Please double check and make sure your ojdbc.jar is in $CATALINA_HOME/common/lib. -Original Message- From: MARU, SOHIL (SBCSI) [mailto:[EMAIL PROTECTED] Sent: Friday, April 09, 2004 8:02 AM To: [EMAIL PROTECTED] Subject: No Suitable Driver Problem Hey Doug, I tried moving the username

RE: No Suitable Driver Problem

2004-04-09 Thread MARU, SOHIL (SBCSI)
- From: Daniel Huang [mailto:[EMAIL PROTECTED] Sent: Friday, April 09, 2004 11:22 AM To: Tomcat Users List Subject: RE: No Suitable Driver Problem Please double check and make sure your ojdbc.jar is in $CATALINA_HOME/common/lib. -Original Message- From: MARU, SOHIL (SBCSI) [mailto:[EMAIL

RE: No Suitable Driver Problem

2004-04-09 Thread MARU, SOHIL (SBCSI)
Never mind, even though I am using jdk1.4 and tomcat5.0, I had to replace ojdbc14.jar with classes version to get it to work. -Original Message- From: MARU, SOHIL (SBCSI) Sent: Friday, April 09, 2004 11:26 AM To: 'Tomcat Users List' Subject: RE: No Suitable Driver Problem Hi Daniel

Re: No Suitable Driver Problem

2004-04-09 Thread Parsons Technical Services
PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday, April 09, 2004 12:25 PM Subject: RE: No Suitable Driver Problem Hi Daniel, I managed to solve this one, my database url was missing the schema name, that was causing the problem. I changed it from jdbc:oracle:[EMAIL PROTECTED

Re: No suitable driver

2004-03-29 Thread Todd H. Siegel
and let us know. Doug - Original Message - From: Todd H. Siegel [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Saturday, March 27, 2004 6:39 PM Subject: Re: No suitable driver Doug, I made those changes and I still have the same problem

Re: No suitable driver

2004-03-29 Thread Parsons Technical Services
you got it working. Doug - Original Message - From: Todd H. Siegel [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, March 29, 2004 8:12 PM Subject: Re: No suitable driver Success! Thanks for your help Doug. I am going to submit this to the developer list

Re: No suitable driver

2004-03-29 Thread Todd H. Siegel
] Sent: Saturday, March 27, 2004 6:39 PM Subject: Re: No suitable driver Doug, I made those changes and I still have the same problem. org.apache.commons.dbcp.SQLNestedException: Cannot create JDBC driver of class

Re: No suitable driver

2004-03-27 Thread Todd H. Siegel
Doug, I made those changes and I still have the same problem. org.apache.commons.dbcp.SQLNestedException: Cannot create JDBC driver of class 'com.microsoft.jdbcx.sqlserver.SQLServerDataSource' for connect URL 'jdbc:microsoft:sqlserver://localhost\dbname;user=username;password=password', cause:

Re: No suitable driver

2004-03-27 Thread Parsons Technical Services
it a try and let us know. Doug - Original Message - From: Todd H. Siegel [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Saturday, March 27, 2004 6:39 PM Subject: Re: No suitable driver Doug, I made those changes and I still have the same problem

Re: No suitable driver

2004-03-26 Thread Todd H. Siegel
Doug, Yes, I am using TC5, the drivers work when I connect directly via DriverManager and are in common/lib. Here are the relevant parts of my server.xml: GlobalNamingResources !-- Test entry for demonstration purposes -- Environment name=simpleValue type=java.lang.Integer value=30/

Re: No suitable driver

2004-03-26 Thread Parsons Technical Services
Todd, This: Resource name=resourceName auth=Container type=javax.sql.DataSource/ This: ResourceParams name=resourceName This: ResourceLink name=jdbc/dbname global=resourceName type=javax.sql.DataSource / This: resource-ref

Re: No suitable driver

2004-03-25 Thread Parsons Technical Services
Todd, I assume you are running TC5? Please post your configs from the server.xml, web.xml, context.xml and code snippet you use to get a connection. Because you are getting a driver it is at least seeing some of your config. Are you using the correct drivers? Are they current? Are they

RE: No Suitable Driver Error -- Still No Success

2004-02-03 Thread Mike Curwen
What does your web.xml look like? Read step 3 on this page: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jndi-datasource-examples -howto.html -Original Message- From: Kumar Abhay-CAK203C [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 03, 2004 9:46 AM To: [EMAIL PROTECTED]

RE: No Suitable Driver Error -- Still No Success

2004-02-03 Thread Burgess, Jay S
Having just gone through a similar issue last week, I can recommend searching the archives (and maybe the bug database). You'll probably find your solution. If you're getting this error when you start up Tomcat, then it's probably fixable (you may have a JAR in the wrong place, etc.) If you're

RE: No Suitable Driver Error -- Still No Success

2004-02-03 Thread Kumar Abhay-CAK203C
AM To: 'Tomcat Users List' Subject: RE: No Suitable Driver Error -- Still No Success What does your web.xml look like? Read step 3 on this page: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jndi-datasource-examples -howto.html -Original Message- From: Kumar Abhay-CAK203C [mailto

RE: No Suitable Driver Error -- Still No Success

2004-02-03 Thread Mike Curwen
: Kumar Abhay-CAK203C [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 03, 2004 10:11 AM To: 'Tomcat Users List' Subject: RE: No Suitable Driver Error -- Still No Success Importance: High This is my Web.xml resource-ref res-ref-namejdbc/estimation/res-ref-name res

Re: No Suitable Driver Error -- Still No Success

2004-02-03 Thread fachhochschule.burkhart
Hi , I am getting the following error in JDBC connection pooling. Error log and other details are as follows: Please help !! Regards Abhay Caught while creating a connection in EPP dB:=org.apache.commons.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect

RE: No suitable driver

2002-07-17 Thread The Kelley's
I had a problem somewhat simular to that. Make sure you have access to the driver in the bean class. Maybe a required library or something. Tim -Original Message- From: Meichun Li [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 17, 2002 12:01 PM To: Tomcat Users List Subject: No

RE: No suitable driver

2002-07-17 Thread Simon Jenkinson
have you tried: Class.forName(org.gjt.mm.mysql.Driver).newInstance(); Si -Original Message- From: The Kelley's [mailto:[EMAIL PROTECTED]] Sent: 17 July 2002 17:17 To: Tomcat Users List Subject: RE: No suitable driver I had a problem somewhat simular to that. Make sure you have

RE: No suitable driver

2002-07-17 Thread Meichun Li
On Wed, 17 Jul 2002, The Kelley's wrote: I had a problem somewhat simular to that. Make sure you have access to the driver in the bean class. Maybe a required library or something. Tim Thanks for the reply. Could you explain more detail about the access to the driver? In my bean class,

RE: No suitable driver

2002-07-17 Thread The Kelley's
That's what it sounds like. For some reason your bean class can't see the driver. Tim -Original Message- From: Meichun Li [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 17, 2002 12:20 PM To: Tomcat Users List; [EMAIL PROTECTED] Subject: RE: No suitable driver On Wed, 17 Jul 2002

Re: not suitable driver?

2002-02-22 Thread Anja Falkner
Hi Isak, the DriverManager has a method called availableDriver or so. Use this to show, if your driver is registered. If yes, your driver could be registered, but can not do his work with the database. This is no problem of Tomcat. If no, the driver.jar was not found by tomcat. Then try

RE: not suitable driver?

2002-02-22 Thread Justin Rowles
getConnection(jdbc:mysql:3306://localhost/bukujsp?snip Surely you mean: getConnection(jdbc:mysql//localhost:3306/bukujsp?snip They may be identical. Anyone? J. -- You're only jealous cos the little penguins are talking to me.

RE: No suitable driver Datasource Problem

2002-02-19 Thread Randy Layman
I'm would guess that your JDBC driver is not available to the correct class loader. Try moving the JDBC driver up to the TOMCAT_HOME/lib/common directory, restart Tomcat, and see if that works. Randy -Original Message- From: remy.menetrieux [mailto:[EMAIL PROTECTED]]

Re: No suitable driver Datasource Problem

2002-02-19 Thread remy.menetrieux
Thanks it's work... Remy Randy Layman wrote: I'm would guess that your JDBC driver is not available to the correct class loader. Try moving the JDBC driver up to the TOMCAT_HOME/lib/common directory, restart Tomcat, and see if that works. Randy -Original Message- From:

RE: No suitable driver

2001-08-01 Thread Randy Layman
Option 1: Search the mailing list archives and discover that this is an EXTREMELY common question. The benefit of this is that you don't have to put up with people like me telling you to go look at a place you should have thought to look before you sent your question. Option

Re: No suitable driver

2001-08-01 Thread Hari
String url = jdbc:pool:oracle:thin:@localhost:1521:MY_DB; Since you are using thin oracle client driver, I think the pool should not be there. In my work place, I use only this connection URL string. String url = jdbc:oracle:thin:@host:port:sid - Hari. - Original Message - From: