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:

  1. Launch the Command Prompt.
  2. Go to the folder that contains qds-jdbc-<driver version>.jar.
  3. Run the following commands:
    1. jar -xvf qds-jdbc-<driver version>.jar META-INF/MANIFEST.MF
    2. more "META-INF/MANIFEST.MF" | findstr "Implementation-Version"

To verify on Linux and Mac:

  1. Launch the Terminal.

  2. Go to the folder that contains qds-jdbc-<driver version>.jar.

  3. Run the following command:

    jar -xvf qds-jdbc-<driver version>.jar META-INF/MANIFEST.MF | grep Implementation-Version META-INF/MANIFEST.MF