Back to Flyway

IRIS

documentation/Reference/Database Driver Reference/IRIS.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:IRIS://<i>host</i>:<i>port</i>/<i>namespace</i></code>
SSL supportNot tested
Ships with Flyway Command-lineNo
Maven Central coordinatescom.intersystems:intersystems-jdbc
Supported versionsN/A
Default Java classcom.intersystems.jdbc.IRISDriver
Flyway Community implementationflyway-community-db-support

Java Usage

IRIS 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-iris</artifactId>
</dependency>

Gradle

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