Home Applications liquibase-iris

liquibase-iris

This application is not supported by InterSystems Corporation. Please be notified that you use it at your own risk.
0
0 reviews
0
Awards
209
Views
0
IPM installs
0
0
Details
Releases
Reviews
Issues
Pull requests
Luquibase extension: InterSystems IRIS support

What's new in this version

Initial Release

Liquibase extension: InterSystems IRIS Database support

This is a Liquibase extension for InterSystems IRIS support. InterSystems IRIS is a high-performance database that powers transaction processing applications around the world. Using the Cache database, you can model and store data as tables, objects, or multidimensional arrays (hierarchies).

Configuring the extension

These instructions will help you get the extension up and running on your local machine for development and testing purposes. This extension has a prerequisite of Liquibase core in order to use it. Liquibase core can be found at https://www.liquibase.org/download.

Maven

Specify the Liquibase extension in the <dependency> section of your POM file by adding the com.caretdev:liquibase-iris dependency for the Liquibase plugin.


    
    org.liquibase
    liquibase-maven-plugin
    4.23.1
    
    
    liquibase.properties
    
    
    
        
                com.caretdev
                liquibase-iris
                ${liquibase-iris.version}
        
        
    

Java call

public class Application {
    public static void main(String[] args) {
        IRISDatabase database = (IRISDatabase) DatabaseFactory.getInstance().openDatabase(url, null, null, null, null);
        Liquibase liquibase = new Liquibase("liquibase/ext/changelog.generic.test.xml", new ClassLoaderResourceAccessor(), database);
        liquibase.update("");
    }
}
Read more
Donate
Version
1.0.001 Feb, 2024
Ideas portal
https://ideas.intersystems.com/ideas/DPI-I-436
Category
Frameworks
Works with
InterSystems IRIS
First published
21 Aug, 2023