Want to deploy your JVM, Node.js and Go apps effortlessly to AWS? Try our service Boxfuse

Derby

Versions

  • 10.8.2.2 and later

Default Driver

  • org.apache.derby.jdbc.EmbeddedDriver

Sql Script Syntax

Compatibility

  • DDL exported by Derby can be used unchanged in a Flyway migration.
  • Any Derby sql script executed by Flyway, can be executed by the Derby tools (after the placeholders have been replaced).

Example

/* 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');

Limitations

  • None

SQLite