documentation/Reference/Database Driver Reference/Sybase ASE.md
{% include database-boilerplate.html %}
| Item | jConnect | jTDS |
|---|---|---|
| URL format | <code>jdbc:sybase:Tds:<i>host</i>:<i>port</i>/<i>database</i></code> | <code>jdbc:jtds:sybase://<i>host</i>:<i>port</i>/<i>database</i></code> |
| Ships with Flyway Command-line | No | Yes |
| Download | Download from sap.com | Maven Central coordinates: net.sourceforge.jtds:jtds |
| Supported versions | 7.0 and later | 1.3.1 and later |
| Default Java class | com.sybase.jdbc4.jdbc.SybDriver | net.sourceforge.jtds.jdbc.Driver |
Sybase ASE support is a separate dependency for Flyway and will need to be added to your Java project to access these features.
Sybase ASE is found within the flyway-database-sybasease plugin module.
<dependency>
<groupId>com.redgate.flyway</groupId>
<artifactId>flyway-database-sybasease</artifactId>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-database-sybasease</artifactId>
</dependency>
buildscript {
dependencies {
implementation "com.redgate.flyway:flyway-database-sybasease"
}
}
buildscript {
dependencies {
implementation "org.flywaydb:flyway-database-sybasease"
}
}