Using Liquibase with Apache Derby

Apache Derby is an open-source relational database implemented entirely in Java and available under the Apache License, Version 2.0.

Supported versions

  • 10.16.X
  • 10.15.X
  • 10.14.X

Prerequisites

Install drivers

To use Liquibase and Apache Derby, you need the JDBC driver JAR file. You can also download it from the Apache Derby Tools Maven repository.

Place your JAR file(s) in the liquibase/lib directory. Read more: Adding and Updating Liquibase Drivers.

If you use Maven, you must include the driver JAR as a dependency in your pom.xml file. Read more: Configuring Liquibase Attributes in your Maven POM File.

<dependency>
    <groupId>org.apache.derby</groupId>
    <artifactId>derbytools</artifactId>
    <version>10.15.2.0</version>
</dependency>

Test your connection

  1. Ensure your Apache Derby database is configured. As an option, you can run the sysinfo command to check the output of Derby system information. For more details, see the Install Software documentation.
  2. Specify the database URL in the Liquibase properties file. Liquibase does not parse the URL. You can either specify the full database connection string or specify the URL using your database's standard JDBC format:
  3. url: jdbc:derby://localhost:1527/MYDATABASE;create=true

    Note: If you created MYDATABASE, use create=false or remove create=true from URL.

    Tip: To apply a Liquibase Pro key to your project, add the following property to the Liquibase properties file: licenseKey: <paste code here>

  1. Create a text file called changelog (.xml, .sql, .json, or .yaml) in your project directory and add a changeset.
  2. Navigate to your project folder in the CLI and run the Liquibase status command to see whether the connection is successful:
  3. liquibase status --username=test --password=test --changelog-file=<changelog.xml>

    Note: You can pass arguments in the CLI or keep them in the Liquibase properties file.

  4. Inspect the SQL with the update-sql command. Then make changes to your database with the update command.
  5. liquibase update-sql --changelog-file=<changelog.xml>
    liquibase update --changelog-file=<changelog.xml>
  6. From a database UI tool, ensure that your database contains the test_table you added along with the DATABASECHANGELOG table and DATABASECHANGELOGLOCK table.

Troubleshooting issues on the macOS

If your Derby Server is not running or you are not using the embedded driver, use the following commands on the Mac to start the Derby Server:

export DERBY_HOME=<location_of the unzipped directory_for_derby>

Example: export DERBY_HOME=/Users/myname/Downloads/db-derby-10.15.2.0-bin

export JAVA_HOME=<path_to_your_JRE>

Note: Use the actual installed location of the JRE in place of <path_to_your_JRE> since Apache Derby will expect a bin directory as a subfolder. For example, export JAVA_HOME=/Library/Java/JavaVirtualMachines/adoptopenjdk-14.jdk/Contents/Home

java -jar $DERBY_HOME/lib/derbynet.jar start -h 0.0.0.0

Related links