Verifying the JDBC Driver Version¶
The Downloading the JDBC Driver page always lists the most-recently released version of the JDBC driver.
You can get the version from the driver INFO logs. You can also get the version number by using the
qds-jdbc-<driver version>.jar
file.
Verifying the JDBC Driver Version using the qds-jdbc-<driver version>.jar¶
To verify on Windows:
- Launch the Command Prompt.
- Go to the folder that contains
qds-jdbc-<driver version>.jar
. - Run the following commands:
jar -xvf qds-jdbc-<driver version>.jar META-INF/MANIFEST.MF
more "META-INF/MANIFEST.MF" | findstr "Implementation-Version"
To verify on Linux and Mac:
Launch the Terminal.
Go to the folder that contains
qds-jdbc-<driver version>.jar
.Run the following command:
jar -xvf qds-jdbc-<driver version>.jar META-INF/MANIFEST.MF | grep Implementation-Version META-INF/MANIFEST.MF