Back to Flyway

DuckDB

documentation/Reference/Database Driver Reference/DuckDB.md

latest1.8 KB
Original Source
  • Verified Versions: N/A
  • Maintainer: {% include community-db.html %}

Supported Versions and Support Levels

{% include database-boilerplate.html %}

Driver

ItemDetails
URL format<code>jdbc:duckdb:<i>database</i></code>
SSL supportNot tested
Ships with Flyway Command-lineNo
JDBC driver download for Command-lineDuckDB JDBC Drivers
Maven Central coordinatesorg.duckdb:duckdb_jdbc
Supported versionsN/A
Default Java classorg.duckdb.DuckDBDriver
Flyway Community implementationflyway-community-db-support

Java Usage

DuckDB support is a separate dependency for Flyway and will need to be added to your Java project to access these features.

Maven

Open Source

xml

<dependency>
    <groupId>org.flywaydb</groupId>
    <artifactId>flyway-database-duckdb</artifactId>
</dependency>

Gradle

Open Source

groovy
buildscript {
    dependencies {
        implementation "org.flywaydb:flyway-database-duckdb"
    }
}