I want to implement Liquibase in my java application. I could use the update command by using:
Liquibase liquibase = new Liquibase(changelogFile, new ClassLoaderResourceAccessor(), database);
liquibase.update(new Contexts(), new LabelExpression());
Is there any way to do the same with updateSQL command? (I cann’t find updateSQL method in Liquibase class)
Thank you
Good question, I believe @NathanVoxland / @MikeOlivas may know. What are you trying to do to read the liquibase updateSQL command? You could exec it and parse the output as well.