documentation/Reference/Database Driver Reference/DB2 zOS Database.md
{% include database-boilerplate.html %}
| Item | Details |
|---|---|
| URL format | <code>jdbc:db2://<i>host</i>:<i>port</i>/<i>database</i></code> |
| SSL support | Not tested |
| Ships with Flyway Command-line | No |
| Maven Central coordinates | com.ibm.db2.jcc |
| Supported versions | N/A |
| Default Java class | com.ibm.db2.jcc.DB2Driver |
| Flyway Community implementation | flyway-community-db-support |
Whilst most databases Flyway supports have common configuration parameters, there are sometimes specific configurations available:
DB2 support is a separate dependency for Flyway and will need to be added to your Java project to access these features.
DB2 is found within the flyway-database-db2zos plugin module.
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-database-db2zos</artifactId>
</dependency>
buildscript {
dependencies {
implementation "org.flywaydb:flyway-database-db2zos"
}
}