Yes, if you look into the commons-dbcp 1.2.1 source, BasicDataSource.java, line 757 ff:

       // Load the JDBC driver class
       if (driverClassName != null) {
           try {
               Class.forName(driverClassName);
           } catch (Throwable t) {
               String message = "Cannot load JDBC driver class '" +
                   driverClassName + "'";
               logWriter.println(message);
               t.printStackTrace(logWriter);
               throw new SQLNestedException(message, t);
           }
       }

I think this is the one being used in tomcat 5.5.4.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to