Using WAS 5.1, I have a
JDBC Provider setup for my Oracle DB.
The driver is ojdbc14.jar (we've tried a few different ones with same result).
driver class: oracle.jdbc.driver.OracleDriver
datasource helper classname: com.ibm.websphere.rsadapter.GenericDataStoreHelper
When I attempt to
test this connection inside the WAS admin, I get the following error:
java.lang.Exception: DSRA8101E: DataSource class cannot be used as one-phase: ClassCastException: oracle.jdbc.driver.OracleDriver. View JVM logs for further details. null
I found in a search to set the custom variable enable2Phase to true, but that gives me the same error as above except is says cannot be used as two-phase
Any ideas why this driver does not work, or reasons for this error message?
thx