jdbc version

is there a way i can programatically determine whether the driver i am using is jdbc 2.0 compliant?
[113 byte] By [mkowales] at [2007-9-26 5:32:31]
# 1

>...programatically determine whether the driver i am using is jdbc 2.0 compliant.

If you could how would that help you? Just because it it JDBC compliant does not mean that, for example, it has to do updatable cursors.

If you want to figure what a driver can do then you should look at Connection.getMetaData() and DatabaseMetaData.

jschell at 2007-6-29 19:43:20 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...