Hi HXTT team,
I am trialing the DBF driver and have imported the jar file into the Oracle 11g database using the syntax
loadjava -user username/password@database -v -f DBF_JDBC40.jar
Unfortunately the DBFDriver class is in an invalid state.
Is the jar file compatible with the Oracle JVM, and if it is, why won't it compile to a valid state?
Regards,
Scott
|
|
Oracle 11g is using JDK1.5.X, but JDBC4.0 requires JDK1.6.X, so you should use DBF_JDBC30.jar
|
|
Thanks, that was my next step in the process. Trying to load the lower versioned DBF_JDBC drivers, but now you have answered my question I feel more confident it will works.
|
>load the lower versioned DBF_JDBC drivers,
They are on the same version, but for different JDBC version, and JDK version.
>compatible with the Oracle JVM,
Yeah. No issue.
|