10.15
(Important: see ‘Compatibility’ below)10.14
10.13
Flyway Teams 10.12
Flyway Teams 10.11
Flyway Teams Compatible | ✅ (see notes below) |
---|---|
Certified | ✅ |
Guaranteed | ✅ Flyway Teams |
Support Level determines the degree of support available for this database (learn more).
URL format | jdbc:derby:subsubprotocol:databaseName |
---|---|
Ships with Flyway Command-line | Yes |
Maven Central coordinates | org.apache.derby:derbyclient:10.14.1.0 |
Supported versions | 10.11 and later |
Default Java class | org.apache.derby.jdbc.EmbeddedDriver |
/* Single line comment */
CREATE TABLE test_data (
value VARCHAR(25) NOT NULL PRIMARY KEY
);
/*
Multi-line
comment
*/
-- Sql-style comment
-- Placeholder
INSERT INTO ${tableName} (name) VALUES ('Mr. T');