# Connect with DBeaver

You can manage your SingleStore databases with [DBeaver](https://dbeaver.io/) using the SingleStore JDBC driver.

## Prerequisites

* [The SingleStore JDBC Driver](https://docs.singlestore.com/db/v9.1/developer-resources/connect-with-application-development-tools/connect-with-java-jdbc/the-singlestore-jdbc-driver.md): Download the latest version of the driver from [GitHub](https://github.com/memsql/S2-JDBC-Connector/releases/latest).

## Connect with SingleStore from DBeaver

To connect to your cluster from DBeaver,

1. In DBeaver, select **Database > Driver Manager**.

2. On the **Driver Manager** dialog, select **MariaDB > Copy**. The **Create New Driver** dialog opens.

3. In the **Create new driver** dialog, on the **Settings** tab, enter the following details:

   * **Driver Name**: Enter **SingleStore**.
   * **Driver Type**: From the list, select **MySQL**.
   * **Class Name**: Specify the Class Name for the SingleStore JDBC driver: `com.singlestore.jdbc.Driver`.
   * **URL Template**: Enter the following template:

     `jdbc:singlestore://{host}[:{port}]/[{database}]`.
   * **Default Port**: The default is `3306`.

     ![](https://images.contentstack.io/v3/assets/bltac01ee6daa3a1e14/blteb6a0a4422459c3f/6a2c4267970cc7568b446f45/dbeaver-mrmGb8.png)

4. On the **Libraries** tab,

   1. Remove the existing MariaDB dependencies.

   2. Select **Add file**. Select the SingleStore JDBC driver `.jar` file downloaded earlier, and select **Open**.

      Alternatively, you can select **Add Artifact**, and then add the following dependency for the SingleStore JDBC driver under **Dependency Declaration**.
      ```xml
      <dependency>
      	<groupId>com.singlestore</groupId>
      	<artifactId>singlestore-jdbc-client</artifactId>
      	<version>1.1.9</version>
      </dependency>
      ```
      Update the version in the dependency declaration with the latest version.

5. Select **OK**. The SingleStore driver is now configured in DBeaver.

6. In DBeaver, select **New Database Connection > SingleStore**.

7. On the **Connect to a database** dialog, enter the connection configuration of your SingleStore cluster.&#x20;

8. Select **Test Connection** to test your connection.

The connection is now configured, and you can connect to your SingleStore databases from DBeaver.

***

Modified at: September 26, 2025

Source: [/db/v9.1/connect-to-singlestore/connect-with-dbeaver/](https://docs.singlestore.com/db/v9.1/connect-to-singlestore/connect-with-dbeaver/)

(An index of the documentation is available at /llms.txt)
