Back to Flyway

Cubrid

documentation/Reference/Database Driver Reference/Cubrid.md

latest1.9 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:cubrid://<i>host</i>:<i>port</i></code>
SSL supportNot tested
Ships with Flyway Command-lineNo
Maven Central coordinatescubrid:cubrid-jdbc
Supported versionsN/A
Default Java classcubrid.jdbc.driver.CUBRIDDriver
Flyway Community implementationflyway-community-db-support

Java Usage

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

Maven

Database support

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

Gradle

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