documentation/Reference/Database Driver Reference/DuckDB.md
{% include database-boilerplate.html %}
| Item | Details |
|---|---|
| URL format | <code>jdbc:duckdb:<i>database</i></code> |
| SSL support | Not tested |
| Ships with Flyway Command-line | No |
| JDBC driver download for Command-line | DuckDB JDBC Drivers |
| Maven Central coordinates | org.duckdb:duckdb_jdbc |
| Supported versions | N/A |
| Default Java class | org.duckdb.DuckDBDriver |
| Flyway Community implementation | flyway-community-db-support |
DuckDB support is a separate dependency for Flyway and will need to be added to your Java project to access these features.
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-database-duckdb</artifactId>
</dependency>
buildscript {
dependencies {
implementation "org.flywaydb:flyway-database-duckdb"
}
}