documentation/Reference/Database Driver Reference/Databricks.md
{% include database-boilerplate.html %}
| Item | Details |
|---|---|
| URL format | <code>jdbc:databricks://<i>host</i>:<i>port</i><i>/default;transportMode=http;ssl=1;httpPath=path;EnableArrow=0;AuthMech=3;UID=token;PWD=personal-access-token</i></code> |
| SSL support | Not tested |
| Ships with Flyway Command-line | Yes |
| Maven Central coordinates | com.databricks:databricks-jdbc |
| Supported versions | N/A |
| Default Java class | com.databricks.client.jdbc.Driver |
| Flyway Community implementation | flyway-community-db-support |
Databricks 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-databricks</artifactId>
</dependency>
buildscript {
dependencies {
implementation "org.flywaydb:flyway-database-databricks"
}
}
EnableArrow=0 to your JDBC connection string--add-opens java.base/java.lang=ALL-UNNAMED. This can be done via the command line or environment variables