Connecting to Custom Connectors with JDBC Drivers
CData is a certified partner of Sisense that provides drivers for many of the Sisense custom connectors. This page provides generic instructions on connecting to CData connectors that are not covered by specific instructions in Sisense documentation.
The support for the connector is provided by Sisense and will be assisted by the certification partner's support, if needed. For any support issues or additional functionality requests, contact your Sisense representative or open a request through the Sisense Help Center. For advanced inquiries specific to driver functionality, you can also contact the certification partner's support directly via support@cdata.com.
After you have downloaded the driver, you can connect to your application through a connection string in Sisense . The connection string is used to authenticate users that connect to your application's APIs. Once you have connected to the application, you can import a variety of tables from the application's API.
This page describes how to download the required driver and deploy it, how to connect to your application with a connection string, and more.
For the list of supported connectors, see Introduction to Data Sources.
Downloading the Custom Driver from CData for Your Application
You can download the custom driver for your application here .
For a short video about downloading the driver, see below (the video uses the Box driver as an example).
Note:
- The driver is certified for Sisense v7.2 and above.
- Sisense v7.4 and above: Click the above link to download a ready-to-use driver.
- Sisense prior to v7.4: Click the above link to download a 30-days free-trial of the driver. Contact Sisense for the full license version.
- The minimum compatible Java version for the driver is Java version 17.
For a short video of the process, see below (the video uses the Box driver as an example).
The drivers are provided by the following data source vendors:
Data Source | Driver Class | JDBC URL Example |
---|---|---|
Azure Data Explorer | com.microsoft.sqlserver.jdbc.SQLServerDriver | jdbc:presto://{host}/mysql |
ClickHouse | ru.yandex.clickhouse.ClickHouseDriver | jdbc:clickhouse://{host}/flights |
Denodo | com.denodo.vdp.jdbc.Driver | jdbc:vdb://<hostname>:<port>/<database> |
Dremio | com.dremio.jdbc.Driver | jdbc:dremio:direct={host}:31010 |
IBM DB2
(Connecting to IBM DB2) |
com.ibm.db2.jcc.DB2Driver | jdbc:db2://db2w-vqplkwx.us-south.db2w.cloud.ibm.com:50001/BLUDB:sslConnection=true; |
Impala | com.cloudera.impala.jdbc4.Driver | jdbc:impala://{host}/tpch_200mb |
Neo4j | com.simba.neo4j.jdbc.Driver | jdbc:neo4j://{host}:36485 |
PrestoDB | io.prestosql.jdbc.PrestoDriver | jdbc:presto://{host}/mysql |
Vertica | com.vertica.jdbc.Driver | jdbc:vertica://{host}/tpch |
Yellowbrick | org.postgresql.Driver | jdbc:postgresql://ecosystem1.yellowbrick.io:5432 |
Note:
- The minimum compatible Java version for the driver is Java version 17.
- Each data source has its own requirements for connecting to it via JDBC. Refer to the vendor documentation for this information.
Connecting to Your Application via a Connection String
To access your application from Sisense , you must create a connection string and provide it to Sisense .
To create the connection string:
- Open the lib directory for the connector. This is the default path:
C:\Program Files\CData\CData JDBC Driver for <Driver Name> 2019\lib
. - Double-click the jar file in the lib directory.
Alternatively, to open the JAR file from the command line, enter the following command in the command prompt (change the driver name to your driver):cd C:\Program Files\CData\CData JDBC Driver for <Driver Name> 2019\lib
- Press Enter .
- Enter the following command (change the driver name to your driver):
"C:\Program Files\Sisense\infra\jre\bin\java.exe" -jar cdata.jdbc.<Driver Name>.jar
. -
Press Enter.
Example:
The Connection String Builder opens.
- Click in the Value column and provide the values of the relevant properties:
If your application Enter the properties requires OAuth - InitiateOAuth: set to GETANDREFRESH
- Leave all the other properties empty
The driver uses embedded credentials which originate from a OAuth App embedded into the driver. The embedded credentials provide full functionality, so you do not have to create an OAuth App.
Note:
If you want to configure the authentication or limit the scope of the data provided to Sisense, you will need to create your own OAuth App.
does not require OAuth - InitiateOAuth: set to OFF.
- Set the User and Password properties to the credentials for your application.
- If relevant, the Connection String Builder will require additional properties, as your application requires.
Note:
Each application requires different properties in the connection string. Find out more about the properties relevant to your application here .
- Click Test Connection. A new browser tab opens where you need to log in to your application
in order to grant access. (Each application will display a different window and messages.)
Close the Authorization Successful! message that opens. - Go back to the Connection String Builder dialog, and click OK in the Test Connection Successful message to close it.
- Click Copy to Clipboard to obtain the connection string.
For a short video of the process, see below (the video uses the Box driver as an example).
You need to follow the above instructions only on first connect, and then when your credentials to the application change.
To help you create a connection string and test the connection, see Connection String Builder for Certified Connectors.
If you have any issues connecting to your data source, see Troubleshooting JDBC Data Connectors.
Importing Your Application's Tables into Your ElastiCube
- Open Sisense.
For a non-local installation, open Sisense on the hosted cloud environment. - In the Data page, open an ElastiCube or create a new ElastiCube.
- In the Model Editor, click
; the Add Data dialog box is displayed.
- Click Generic JDBC to open the settings.
- In Connection String , paste the string you obtained above:
If your application The connection string requires OAuth In Sisense the string will be appended with some
_persist properties
. The following is an example of the connection string as it looks in Sisense:jdbc:<your driver>:Initiate OAuth="GETANDREFRESH";_persist_oauthexpiresin=3199;_persist_token_timestamp=1561893244662;_persist_oauthaccesstoken=mswNfVDVpnBZc3pkQQja7WRHNebbaGZL;_persist_oauthrefreshtoken=ybofHX3Vrd7C8cPhE5ZysVxFiUmkJSiw2htjPL0nKDBgpqjcyGP6Am7KNaDzqhZz;
does not require OAuth Paste your string as-is, for example:
jdbc:<your driver>:Initiate OAuth="OFF";User=XXXX;Password=********;
- In JDBC JARs Folder, enter the name of the directory where the JAR file is located.
- In Driver's Class Name, enter the following class. To obtain it, click here.
- In User Name and Password:
If your application User Name and Password Fields requires OAuth Leave User Name and Password blank. does not require OAuth - If User Name and Password are part of the connection string, leave these fields blank.
- If they are not part of the connection string, enter the credentials to your application here.
-
Click Next. A list of tables in the database are displayed. All tables and views associated with the database will appear in a new window.
- From the Tables list, select the relevant table or view you want to work with. You can click next to the relevant table or click Preview to see a preview of the data inside it.
- (Optional) Click + to customize the data you want to import with SQL. See Importing Data with Custom Queries for more information.
- After you have selected all the relevant tables, click Done. The tables are added to your data model.
For a short video of the process, see below (the video uses the Box driver as an example).
Changing the Default Separator
For some data sources, you must change the default separator to the separator required by your data source.
You can change the default separator by modifying the value of tableNamePattern in the following
configuration file:
/opt/sisense/storage/connectors/jdbc_configs/
Limitations
- The driver samples the first X rows and determines the column type. When Sisense finds rows within the data that does not match the column type, Sisense driver returns an error.