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 ScyllaDB, so you never have to write low-level socket code. Drivers are typically distributed by the database vendor or as open-source projects.
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 ScyllaDB are listed in the section below.
ScyllaDB is a high-performance, Cassandra-compatible NoSQL database written in C++, offering significantly lower latency and higher throughput than Apache Cassandra due to its shard-per-core architecture. It is used for high-throughput workloads like ad targeting, IoT telemetry, and real-time leaderboards.
ScyllaDB is wire-compatible with Cassandra. For connecting we use our own open-source JDBC driver, available on GitHub.
The driver is written on top of the native ScyllaDB Java Driver. For connecting to multiple hosts you can pass an URL like: jdbc:scylladb://host1[:port1][,host2[:port2],...[,hostN[:portN]]][/[keyspace];dataCenter[&options]]
Find the DataCenter using nodetool status or nodetool -h ::FFFF:127.0.0.1 status
Connecting using SSL is possible setting the parameters:
javax.net.ssl.trustStore=/path/to/client.truststore&javax.net.ssl.trustStorePassword=password123&
javax.net.ssl.keyStore=/path/to/client.keystore&javax.net.ssl.keyStorePassword=password123
These parameters can be also set in DbSchema.vmoptions file in the installation folder or ./DbSchema.app/Contents/vmoptions.txt on Mac OS, and add:
-Djavax.net.ssl.trustStore=/path/to/client.truststore
-Djavax.net.ssl.trustStorePassword=password123
# If you're using client authentication:
-Djavax.net.ssl.keyStore=/path/to/client.keystore
-Djavax.net.ssl.keyStorePassword=password123
The driver archive is a zip file. Unzip the downloaded archive to get the driver files. The driver source code can be found on GitHub repository. Check the GitHub link for details on how to use the driver and configure SSL.
The driver is written on top of the standard DataStax Java driver.
ScyllaDB is wire-compatible with Cassandra, so DbSchema connects using the Cassandra JDBC driver. Use DbSchema to browse ScyllaDB keyspaces, tables, and materialized views as visual schemas.
Have connection issues? Contact the DbSchema team for help.
Once the JDBC driver is configured, DbSchema connects to your ScyllaDB 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.
Reverse-engineer your ScyllaDB 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.
Compose ScyllaDB 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.
Browse ScyllaDB 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.
Compare your ScyllaDB 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.
Write and execute ScyllaDB 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.
Generate a static HTML site documenting every table, column, type, index, and relationship in your ScyllaDB schema. Share it with your team or embed it in your project wiki — no extra tooling required.
For the full feature list and edition comparison, visit the DbSchema PRO Edition page.