Download HSql JDBC Driver

What Is a JDBC Driver?

A JDBC driver is a Java library file (.jar) that enables Java applications — including DbSchema — to communicate with a database over a standard API. The driver translates generic JDBC calls into the network protocol understood by HSql, so you never have to write low-level socket code. Drivers are typically distributed by the database vendor or as open-source projects.

Understanding the JDBC URL

Every JDBC driver identifies the target database through a connection URL. The URL encodes the hostname, port, database name, and any driver-specific parameters as a single string. The exact syntax varies per driver — the details for HSql are listed in the section below.

Download the HSql JDBC Driver

HyperSQL (HSQLDB) is a relational database engine written entirely in Java, known for its small footprint and in-memory capabilities. It is commonly used in Java application testing, embedded systems, and as the default database for Java EE application servers during integration testing.

HSQLDB may run in two modes: local and server mode. In the local mode the database engine is started directly by the driver, and the software will run in the same thread, locally.

HSQLDB JDBC Driver Details

  • Required File(s): hsqldb.jar
  • Java Driver Class: org.hsqldb.jdbcDriver
  • JDBC URL: jdbc:hsqldb:file:FILE or jdbc:hsqldb:hsql://HOST[:PORT] for the server mode
  • Website: HSQLDB

Download HSQLDB JDBC Driver

The driver archive is a zip file. Extract it and load the .jar files using DbSchema's Driver Manager.

DbSchema and HSQLDB

DbSchema connects to HSQLDB using the embedded JDBC driver and renders tables, views, and sequences as a visual schema. Use the SQL Editor to write HSQL-specific SQL and the Schema Documentation generator to produce reference docs for your embedded schema.

Have connection issues? Contact the DbSchema team for help.

DbSchema Database Designer

Explore HSql Visually with DbSchema

Once the JDBC driver is configured, DbSchema connects to your HSql database and gives you a full graphical workbench — no command-line required. Available as a free Community Edition and a full-featured PRO Edition. No registration needed to get started.

Interactive ER Diagrams

Reverse-engineer your HSql schema into a drag-and-drop ER diagram. Arrange tables visually, add new columns, define foreign keys, and let DbSchema generate the DDL — all without writing SQL by hand.

Interactive ER diagram for HSql in DbSchema

Visual Query Builder

Compose HSql queries by clicking on tables and columns — no SQL knowledge required. Add joins, filters, groupings, and aggregations through a point-and-click interface, then copy the generated SQL or run it directly against the live database.

Visual query builder for HSql in DbSchema

Relational Data Explorer

Browse HSql table data and follow foreign key relationships across tables in a single view. Edit cells inline, filter rows, and paginate through large datasets — all without leaving the explorer.

Relational data explorer for HSql in DbSchema

Schema Synchronization

Compare your HSql schema across development, staging, and production environments. DbSchema generates the exact ALTER statements needed to close the gap and lets you review every change before executing — reducing the risk of unintended schema drift.

Schema synchronization for HSql in DbSchema

SQL Editor

Write and execute HSql queries in the integrated SQL editor with schema-aware autocomplete, syntax highlighting, and instant result display. Run scripts, inspect execution plans, and export results to CSV or JSON from a single interface.

SQL editor for HSql in DbSchema

HTML Schema Documentation

Generate a static HTML site documenting every table, column, type, index, and relationship in your HSql schema. Share it with your team or embed it in your project wiki — no extra tooling required.

Schema documentation generator for HSql in DbSchema

For the full feature list and edition comparison, visit the DbSchema PRO Edition page.

Go deeper with HSql in DbSchema — ER diagrams, Git-based versioning, random data generator, and HTML schema docs. See the full HSql guide →