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