Discover how a bimodal integration strategy can address the major data management challenges facing your organization today.
Get the Report →How to connect to HCL Domino Data with Squirrel SQL client
Connect to HCL Domino data and execute queries in the Squirrel SQL Client.
The CData JDBC Driver for HCL Domino enables you to execute queries to HCL Domino data in tools like Squirrel SQL Client. In this article, you will create a JDBC data source for HCL Domino data and execute queries.
Add the JDBC Driver for HCL Domino
Follow the steps below to add the driver JAR.
- In Squirrel SQL, click Windows -> View Drivers.
- Click the plus icon to open the Add Driver wizard.
- In the Name box, enter a user-friendly name for the driver; for example, CData JDBC Driver for HCL Domino.
- In the Example URL box, enter jdbc:domino:
- In the Extra Class Path tab, click Add.
- In the file explorer dialog that opens, select the JAR file for the driver, located in the lib subfolder of the installation directory.
- Click List Drivers to populate the Class Name menu with the class name for the driver, cdata.jdbc.domino.DominoDriver.
Define Connection Properties
Follow the steps below to save connection properties in the driver alias.
- Click Windows -> View Aliases.
- In the pane that lists the aliases, click the plus icon.
In the Add Alias wizard that opens, the following fields are required for the JDBC driver:
- Name: Enter a name for the alias; for example, CData HCL Domino Source.
- Driver: Select the CData JDBC Driver for HCL Domino.
- URL: Enter jdbc:domino:
- User Name: Enter the username, which is added to the JDBC URL.
- Password: Enter the password, which is added to the JDBC URL.
- If you want to define any additional properties, click Properties.
- In the Driver properties tab of the dialog that appears, select the Use driver properties checkbox.
- In the Specify column, select the checkboxes for the required connection properties.
Connecting to Domino
To connect to Domino data, set the following properties:
- URL: The host name or IP of the server hosting the Domino database. Include the port of the server hosting the Domino database. For example: http://sampleserver:1234/
- DatabaseScope: The name of a scope in the Domino Web UI. The driver exposes forms and views for the schema governed by the specified scope. In the Domino Admin UI, select the Scopes menu in the sidebar. Set this property to the name of an existing scope.
Authenticating with Domino
Domino supports authenticating via login credentials or an Azure Active Directory OAuth application:
Login Credentials
To authenticate with login credentials, set the following properties:
- AuthScheme: Set this to "OAuthPassword"
- User: The username of the authenticating Domino user
- Password: The password associated with the authenticating Domino user
The driver uses the login credentials to automatically perform an OAuth token exchange.
AzureAD
This authentication method uses Azure Active Directory as an IdP to obtain a JWT token. You need to create a custom OAuth application in Azure Active Directory and configure it as an IdP. To do so, follow the instructions in the Help documentation. Then set the following properties:
- AuthScheme: Set this to "AzureAD"
- InitiateOAuth: Set this to GETANDREFRESH. You can use InitiateOAuth to avoid repeating the OAuth exchange and manually setting the OAuthAccessToken.
- OAuthClientId: The Client ID obtained when setting up the custom OAuth application.
- OAuthClientSecret: The Client secret obtained when setting up the custom OAuth application.
- CallbackURL: The redirect URI defined when you registered your app. For example: https://localhost:33333
- AzureTenant: The Microsoft Online tenant being used to access data. Supply either a value in the form companyname.microsoft.com or the tenant ID.
The tenant ID is the same as the directory ID shown in the Azure Portal's Azure Active Directory > Properties page.
Below is a typical connection string:
jdbc:domino:Server=https://domino.corp.com;AuthScheme=OAuthPassword;User=my_domino_user;Password=my_domino_password;
- In the dialog that appears after you click OK, click connect to test the connection.
Discover Schemas and Query HCL Domino Data
After the metadata has loaded, a new tab for the HCL Domino data source is displayed. On the Objects subtab, you can discover schema information, such as the available tables and views.
To view table data, select the table on the Objects tab. The table data is then loaded in a grid on the Content tab.
To execute an SQL query, enter the query on the SQL tab and then click Run SQL (the runner icon). For example:
SELECT Name, Address FROM ByName WHERE City = 'Miami'