Originally posted by m winzenburg:
Can someone explain or be more specific on how to check which version of the driver we are using? Our DBAs don't have a clue, and I'm not aware of any documentation that is available (although I'll do some more checking). We are having a similar problem and not able to use the 2.0 API.
I've located the driver within the java.sql package but don't have any external information on it. Can somebody help?
These DatabaseMetaData methods should help ( if implemented )
int getDriverMajorVersion()
What's this JDBC driver's major version number?
int getDriverMinorVersion()
What's this JDBC driver's minor version number?
String getDriverName()
What's the name of this JDBC driver?
String getDriverVersion()
What's the version of this JDBC driver?
Jamie