Back to Flyway

QuestDB

documentation/Reference/Database Driver Reference/QuestDB.md

latest2.0 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:postgresql://<i>host</i>:<i>port</i>/<i>database</i></code>
SSL supportNot tested
Ships with Flyway Command-lineYes
Maven Central coordinatesorg.postgresql:postgresql
Supported versionsN/A
Default Java classorg.postgresql.Driver
Flyway Community implementationflyway-community-db-support

Java Usage

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

Maven

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

Gradle

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