> For the complete documentation index, see [llms.txt](https://docs.e6data.com/query-engine/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.e6data.com/query-engine/developers/bi-tool-recipes/dbvisualizer.md).

# DbVisualizer

Connect the DbVisualizer SQL client to an e6data cluster using the e6data JDBC driver.

[DbVisualizer](https://www.dbvis.com/) is a universal database tool and SQL editor installed as a local application. Connect it to an e6data cluster with the [e6data JDBC driver](/query-engine/developers/connecting-to-the-engine/jdbc.md).

## Requirements

* DbVisualizer 23.2.4 or newer.
* The latest [e6data JDBC driver](/query-engine/developers/connecting-to-the-engine/jdbc.md).
* The connection details from the cluster's **Connection Information** tab - the JDBC URL, your username, and your password (a [personal access token](/query-engine/guides/security/access-tokens/pat-and-service-account-keys.md)).

The JDBC URL for a **Direct** endpoint:

```
jdbc:e6data://<host>:<port>/database=<database_name>&catalog=<catalog_name>
```

For a **TLS** endpoint:

```
jdbc:e6data://<host>:<port>/database=<database_name>&catalog=<catalog_name>&secure=true&cluster-uuid=<cluster_uuid>
```

## Connect

1. Click **Create Database** to start a new connection.
2. Search for and select **Custom** from the connection list.
3. Give the driver an appropriate name.
4. In the settings format, select **Database URL** and enter the JDBC connection string.
5. Click **Connect** to add the JDBC JAR through the Driver Manager.
6. Open the Driver Manager, provide the name and JDBC connection string, and add the driver.
7. Return to the database connection, enter the Database URL, user ID, and password, and click **Connect**.

## TLS/HTTPS

e6data uses globally trusted certificates, so the host and port from the connection dialog are sufficient. Any cluster requiring authentication also requires TLS/HTTPS - use the cluster's HTTPS URL in the connection string. (Required only for the TLS connectivity endpoint type.)

## See also

* [JDBC](/query-engine/developers/connecting-to-the-engine/jdbc.md)
* [Access tokens](/query-engine/guides/security/access-tokens.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.e6data.com/query-engine/developers/bi-tool-recipes/dbvisualizer.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
