> 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/dbeaver.md).

# DBeaver

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

[DBeaver Community](https://dbeaver.io/) is an open-source SQL editor and universal database tool 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

* DBeaver 23.3.3 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. Gather the connection details for your cluster.
2. Go to **Database → Driver Manager** and click **New**.
3. Give the driver a name.
4. In **Libraries**, click **Add File** and add the e6data JDBC driver, then **Find Class**.
5. Confirm the class name is populated and create the driver.
6. Create a new database connection using the new driver.
7. Enter the JDBC URL, username, and password, and test the connection.

The JDBC driver class name is `io.e6.jdbc.driver.E6Driver`.

## 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.

## 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/dbeaver.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.
