Back to Flyway

DB2 ZOS Database

documentation/Reference/Database Driver Reference/DB2 zOS Database.md

latest2.5 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:db2://<i>host</i>:<i>port</i>/<i>database</i></code>
SSL supportNot tested
Ships with Flyway Command-lineNo
Maven Central coordinatescom.ibm.db2.jcc
Supported versionsN/A
Default Java classcom.ibm.db2.jcc.DB2Driver
Flyway Community implementationflyway-community-db-support

Whilst most databases Flyway supports have common configuration parameters, there are sometimes specific configurations available:

Java Usage

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.

Maven

Open Source

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

Gradle

Open Source

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