How to find the jdbc driver version of DB2 in our project?

Viewed 36

I can only find the version of db2jcc4 in pom.xml, which is 10.1. How can I know the version of JDBC driver that the db2jcc4 is using? BTW, I did not install db2 in my computer. It's a remote database.

1 Answers
java -cp ./db2jcc4.jar com.ibm.db2.jcc.DB2Jcc -version
Related