Liquibase and hibernate validation with hsqldb
I'm creating database using liquibase.Hibernate validates it. Version - Hibernate 3.5.0-Final.In the table blob field is created:<column name="blob1" type="BLOB"> <constraints...
View ArticleRe : TableGenerator Integration
liquibase does not know anything about your id generation strategy. As a result try to insert using liquibase only data that is not going to be changed via application.If it's not suitable for you,...
View ArticleRe : Liquibase and hibernate validation with hsqldb
Liquibase does not use sql BLOB type for blobs which become available in hsqldb since 2.0 version. In hsqldb 1.8.X, the sql type that was used for blob was: varbinary. In order to fix the problem, i've...
View Articlegenerate change log of two shems in my database
I am trying to generate a log of changes to two schedules of my database, one after the other but strangely only the first log runs and did not reported any error, anyone can help me I will post my...
View ArticleLiquibase Modus Operandi help
Hi,I want to start using Liquibase (possible with LiveRebel later).And can't figure out how it can be used.Developers are developing with hibernate and hsqldb. Hbm2ddl is used to generate their...
View ArticleChecksum Failure in Spring but No Problem in Maven
Hi AllLiquibase Version: 3.0.0-rc1May I know is the checksum calculation is the same for liquibase running with maven and used in Spring?I got a problem where:1) The changelog can be executed in Maven...
View ArticleIs there a way to avoid running all changesets if no context is provided?
Hi,my intended set up is such that the normal changesets (initial database schema, refactorings) are not bound to a context. On top of that I wanted to have a changeset to do a database restore which...
View ArticleRe : Error with Hibernate Integration
Did you put the liquibase-hibernate-2.0.0.jar in the classpath?Hibernate integration is no longer part of the "core" liquibase.jar.Giulio
View ArticleCharacter encoding problem when using sqlFile
I am trying to read SQL files in liquibase using the sqlFile tag. The problem is that when I use the updateSQL command all the non latin characters are replaced by question marks.<changeSet...
View Articledelete documentation incorrectly mentions whereClause instead of where element
The delete documentation: http://www.liquibase.org/documentation/changes/delete.htmlincorrectly lists whereClause as an available attribute, when it is actually where.Looks like update has the same...
View ArticleMissing libs in 3.0.0-RC2 Build
Downloaded the 3.0.0-RC2 zip distro and tried to generate an initial changelog from an existing database. Processes error'ed out: java.lang.ClassNotFoundException:...
View ArticleReference documentation for column type conversion and support
I apologize if this has been answered already, but I've been searching for a reference of changelog column type to database-specific type and can't find any.I really just want to know the types that...
View ArticleMulti-line formatted SQL for rollback
I have an issue with writing a multi line rollback statement in my formatted SQL file. Is there any way to accomplish this? It seems like liquibase cannot understand line breaks for a multi-line SQL...
View ArticleRe : Checksum Failure in Spring but No Problem in Maven
This error reported is consistent as of version 3.0.0.rc2.Error setting up or running Liquibase: Validation Failedunder maven, spring and command line
View ArticleRe : Missing libs in 3.0.0-RC2 Build
Thanks, I'll make sure it gets included in the .zipNathan
View ArticleRe : Checksum Failure in Spring but No Problem in Maven
It should be the same checksum calculation with all three versions. I am seeing some differences due to UTF8 handling, is that something that would be applicable to you? Otherwise, people sometimes see...
View ArticleNot loading SnakeYAML?
Hi, when I run the command listed at the top of this output, I get the rest:liquibase --changeLogFile=db.cams.yaml --classpath=snakeyaml-1.12.jar <more opts> updateINFO 11/06/13 12:18:liquibase:...
View ArticleSimple Question on Data Revision
Hello all,I am looking into this platform for making revisions of the database using Joomla. This is so we can go back and forth between Joomla module and article changes when need be.Does Liquibase...
View ArticleRe : Simple Question on Data Revision
Sorry I am the original poster. Forgot to login first!
View ArticleRe : Not loading SnakeYAML?
The problem is because the classpath liquibase parameter sets a sub-classloader whereas snakeyaml needs to be in the classloader that is running liqubase itself.If you add snakeyaml to a new "lib" dir...
View Article