Step 1: Download the JDBC Driver
First, confirm the recommended version of the JDBC driver for your version of Ocient by finding it in Version Compatibility. Download the correct JDBC driver from the Apache Maven repository by clicking on your preferred version, then selecting “view all” and finally downloading the JAR file that is labeled with the patternocient-jdbc4-<version number>-jar-with-dependencies.jar.
Save this file to a convenient location on your client machine.
Step 2: Run the JDBC CLI Program
To run the JDBC CLI Program, you must have Java installed on your machine. For the version, see Version Compatibility. Next, run the following command to start the JDBC CLI Program. Assuming your JAR stored at~/ocient-jdbc4-jar-with-dependencies.jar.
Step 3: Connect
To connect, enter the connection string to your SQL Nodes. SQL Nodes install by default with a self-signed TLS certificate for encryption by default, and a custom certificate can be present. Depending on the TLS configuration, you can usetls=unverified (default) or tls=on for the required setting.
Assuming the standard port 4050, a self-signed certificate, and the SQL Node IP Address of 10.10.1.1, you can connect to the system database with the following connecting string:
select * from sys.tables; to see what tables are defined.
For more details on using the JDBC driver and the CLI program, see the JDBC Manual.
The system cancels any queries made with the JDBC driver if you perform any of these actions:
- Fetch the entire result set.
- Close the connection.
- Execute a new query on the same connection.

