Download the TimescaleDB JDBC driver, copy the JDBC URL into DbSchema, and start designing schemas with ER diagrams — free Community Edition.
A JDBC driver is a Java .jar library that lets applications connect to TimescaleDB.
DbSchema uses JDBC to reverse engineer schemas, run SQL, and generate documentation.
Driver files are usually published by the database vendor or an open-source project.
Host, port, database name, and SSL options are passed in a URL starting with jdbc:.
Each TimescaleDB driver uses its own syntax — see the connection details below.
TimescaleDB is a PostgreSQL extension that adds time-series capabilities — automatic partitioning by time (hypertables), compression, and continuous aggregates — to the standard PostgreSQL engine. It is widely used for IoT sensor data, financial tick data, DevOps metrics, and observability platforms.
TimescaleDB uses the standard PostgreSQL wire protocol, so DbSchema connects using the PostgreSQL JDBC driver.
Download TimescaleDB JDBC Driver
The driver archive is a zip file. Extract it and load the .jar files using DbSchema's Driver Manager.
TimescaleDB is an extension inside a PostgreSQL server, so reaching it means opening up that PostgreSQL server. A fresh installation accepts connections from its own machine only.
listen_addresses = '*' in postgresql.conf, whose location
SHOW config_file; reveals. The default localhost accepts loopback
connections only, and the parameter is read at start-up, so restart the service.
host all all 192.168.1.0/24 scram-sha-256 to
pg_hba.conf, then apply it with SELECT pg_reload_conf();.
Connect to the database that has the extension installed —
SELECT * FROM pg_extension WHERE extname = 'timescaledb'; confirms it. Hypertables appear
as ordinary tables plus their chunk tables, so a TimescaleDB schema reverse engineers like any other
PostgreSQL schema.
A managed service has no config files to edit. The service console gives you the host, port and database, and requires TLS.
TimescaleDB uses the standard PostgreSQL wire protocol, so DbSchema connects using the PostgreSQL JDBC driver and renders hypertables, chunk tables, and continuous aggregate views in the schema diagram.
Connect TimescaleDB, build your first ER diagram in minutes. No account required.
Get the TimescaleDB driver zip below and install DbSchema for Windows, macOS, or Linux.
In DbSchema, open Driver Manager, add the extracted JAR, and paste your JDBC URL.
Reverse engineer TimescaleDB, edit the model visually, and publish schema documentation.
After the JDBC driver connects, you get ER diagrams, SQL editor, schema sync, and HTML documentation in one desktop app. Compare DbSchema editions.
Reverse engineer TimescaleDB into an interactive diagram and edit structures visually.
Run SQL with autocomplete or compose queries without writing every join by hand.
Export HTML docs your team can browse without installing DbSchema.
Connection tips, ports, SSL, and schema design workflows on the database landing page.
Other drivers teams often configure alongside TimescaleDB.
Teams working with TimescaleDB often use these engines too. Explore dedicated guides and JDBC setup for each.