JDBC Adapter 6.0.3 New connection Configuration Error

I am puzzled. My jdbc config works with the following
DataSource Class com.wm.dd.jdbcx.oracle.OracleDataSource

But not with this one, as recommended in this thread.
DataSource Class com.jdbc.pools.OracleDataSource
When I try to enable the connection I get the following error:
The JDBC DataSource class “com.jdbc.pools.OracleDataSource” cannot be found.

  1. I placed ojdbc14.jar in packages\WmJDBCAdapter\code\jars and removed it from …\lib\jars
  2. I renamed classes12.jar to classes12.jarx
  3. My jvm is 1.4
  4. There are no trailing spaces in the DataSource name

Any clues?

You were close… The DataSource class should be:

oracle.jdbc.pool.OracleDataSource

not “pools” as you had. Open up the JAR file if you want to confirm this type of setup [and look for the OracleDataSource file].

James…