We are proud to share our inclusion in the 2024 Gartner Magic Quadrant for Data Integration Tools. We believe this recognition reflects the differentiated business outcomes CData delivers to our customers.
Get the Report →How to Connect DBeaver to Salesforce Data Cloud via a JDBC Driver
Manage Salesforce Data Cloud data with visual tools in DBeaver like the query browser.
The CData JDBC Driver for Salesforce Data Cloud implements JDBC standards that enable third-party tools to interoperate, from wizards in IDEs to business intelligence tools. This article shows how to connect to Salesforce Data Cloud data with wizards in DBeaver and browse data in the DBeaver GUI.
Create a JDBC Data Source for Salesforce Data Cloud Data
Follow the steps below to load the driver JAR in DBeaver.
- Open the DBeaver application and, in the "Database" menu, select the "Driver Manager" option. Click "New" to open the "Create new driver" form.
- In the Settings tab:
- Set Driver Name to a user-friendly name for the driver (e.g. CData JDBC Driver for Salesforce Data Cloud).
- Set Class Name to the class name for the JDBC driver: cdata.jdbc.salesforcedatacloud.SalesforceDataCloudDriver.
- Set URL Template to jdbc:salesforcedatacloud:.
- In the Libraries tab, click "Add File," navigate to the "lib" folder in the installation directory (C:\Program Files\CData[product_name] XXXX\) and select the JAR file (cdata.jdbc.SalesforceDataCloud.jar).
Create a Connection to Salesforce Data Cloud Data
Follow the steps below to add credentials and other required connection properties.
- In the "Database" menu, click "New Database Connection."
- In the "Connect to a database" wizard that results, select the driver you just created (e.g. CData JDBC Driver for Salesforce Data Cloud) and click "Next >."
- On the Main tab of the configuration wizard, set the JDBC URL, using the required connection properties:
Salesforce Data Cloud supports authentication via the OAuth standard.
OAuth
Set AuthScheme to OAuth.
Desktop Applications
CData provides an embedded OAuth application that simplifies authentication at the desktop.
You can also authenticate from the desktop via a custom OAuth application, which you configure and register at the Salesforce Data Cloud console. For further information, see Creating a Custom OAuth App in the Help documentation.
Before you connect, set these properties:
- InitiateOAuth: GETANDREFRESH. You can use InitiateOAuth to avoid repeating the OAuth exchange and manually setting the OAuthAccessToken.
- OAuthClientId (custom applications only): The Client ID assigned when you registered your custom OAuth application.
- OAuthClientSecret (custom applications only): The Client Secret assigned when you registered your custom OAuth application.
When you connect, the driver opens Salesforce Data Cloud's OAuth endpoint in your default browser. Log in and grant permissions to the application.
The driver then completes the OAuth process as follows:
- Extracts the access token from the callback URL.
- Obtains a new access token when the old one expires.
- Saves OAuth values in OAuthSettingsLocation so that they persist across connections.
For other OAuth methods, including Web Applications and Headless Machines, refer to the Help documentation.
Built-in Connection String Designer
For assistance in constructing the JDBC URL, use the connection string designer built into the Salesforce Data Cloud JDBC Driver. Either double-click the JAR file or execute the jar file from the command-line.
java -jar cdata.jdbc.salesforcedatacloud.jar
Fill in the connection properties and copy the connection string to the clipboard.
Below is a typical connection string:
jdbc:salesforcedatacloud:InitiateOAuth=GETANDREFRESH
- Click "Test Connection ..." to ensure you have configured the connection properly.
- Click "Finish."
Query Salesforce Data Cloud Data
You can now query information from the tables exposed by the connection: Right-click a Table and then click View Table. The data is available on the Data tab.
