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