Re : Integration with Dropwizard and JUnit
And is there any example how to combine Dropwizard, JDBI DAO's and JUnit? StackOverFlow
View ArticleRe : Validate only with Spring integration
Thanks for the pointer. I had a look at how that works and implemented a solution based on it. I've sent a pull request (https://github.com/liquibase/liquibase/pull/562) but I'm using a subclassing...
View ArticleCannot get diff against Hibernate to work in ant
I am using these jars:hibernate-core-4.2.7.SP1-redhat-3.jarliquibase.jar (3.4.2)liquibase-hibernate4.2-3.5.jarliquibase-oracle-3.0.0.jarAs well as the other required jars of course.My database:...
View ArticleRe : Cannot get diff against Hibernate to work in ant
You just need to make sure that the Oracle JDBC driver jar is included in your list of jars. I am not sure what is in liquibase-oracle-3.0.0.jar, but it seems like that is the problem.Steve...
View ArticleRe : Cannot get diff against Hibernate to work in ant
Thanks for the suggestion. I should have mentioned that I am including ojdbc6.jar, which does include the Oracle driver. I also removed liquibase-oracle-3.0.0.jar, but still the same error.I looked...
View ArticleRe : Cannot get diff against Hibernate to work in ant
Perhaps someone could post a complete working example of the ant script and properties required to get this to work. I've tried dozens of variations of jar files, properties, and attributes for the...
View ArticleLiquibase udeploy integration fails when loglevel=info
Hi , Am working for udeploy and i have created a plugin to call the liquibase commands from udeploy. So far, it was working fine till i add the loglevel==info to invoke the Liquibase command.After...
View ArticleRe : 3.5.0 release date
Hi Nathan,as much as I see, there are only three issues left in Jira. Do you think Liquibase will be released soon?Thanks and regards,Balazs
View ArticleRe : Liquibase udeploy integration fails when loglevel=info
You might take a look at the DaticalDB4UrbanCode plugin that was written for Datical DB, which is an extension to Liquibase. The source is on Github: https://github.com/Datical/DaticalDB4UrbanCodeSteve...
View ArticlevalidCheckSum in formatted sql
Is it possible to place a validCheckSum comment in a liquibase formatted sql. I tried the following and it did not work. Is there a different way to register a secondary validCheckSum value?...
View ArticleRe : 3.5.0 release date
Yes, very close. Just busy doing some final testing, and adding one more feature with the improved multi-schema support.Nathan
View ArticleRe : validCheckSum in formatted sql
I've answered my own question. Feature is comming in lq 3.5.0 (https://liquibase.jira.com/browse/CORE-2100)
View ArticleIs it possible to simulate a while loop using Liquibase XML or other formats?
HelloHere is an example of heavy DB migration (postgresql):run the following statement in a separate transaction unless it returns zeroWITH updated as ( UPDATE some_table SET some_column =...
View ArticleLiquibase-Package based classes not recognized with 3.5.0-SNAPSHOT jar
I have been using the liquibase-3.4.2.jar file when "migrating" my database tables. I have coded up some changes to the default NVarcharType datatype and have them in the liquibase.change package....
View ArticleRe : Is it possible to simulate a while loop using Liquibase XML or other...
This would need to be done inside a <sql> change tag or a custom change tag you write yourself. Liquibase itself does not have anything built-in like this.Steve DoniePrincipal Software...
View ArticleRe : Liquibase-Package based classes not recognized with 3.5.0-SNAPSHOT jar
Entirely possible that something has changed. Can you give more details about your environment, steps taken, output messages, etc?Steve DoniePrincipal Software EngineerDatical, Inc....
View ArticleRe : Is it possible to simulate a while loop using Liquibase XML or other...
Unfortunately it is not possible to do it in SQL in PostgreSQL, at least not using JDBC (it is only possible to write it in psql scripting language in some ugly way).Does Liquibase design allow to...
View ArticleRe : Is it possible to simulate a while loop using Liquibase XML or other...
When you write a custom tag, you can do pretty much anything you want. We have written a custom <sqlplus> tag for Oracle that allows you to run the sqlplus command line tool, which allows for the...
View ArticleRe : Liquibase-Package based classes not recognized with 3.5.0-SNAPSHOT jar
I am running this on Windows and in the process of cutting things down to a small sample that I could send you the problem suddenly disappeared (naturally ). Doing more investigation it appears that...
View ArticleRe : Cannot get diff against Hibernate to work in ant
Your <referencedatabase> element is not fully filled out. That element is the same type as a <database> element and takes the same attributes. Something like this:<target...
View Article