Tagged Questions
6
votes
1answer
2k views
Hibernate using JPA (annotated Entities) and liquibase
liquibase is a perfect alternative to hibernate's hbm2ddl_auto property if you are using xml-mapping. But Im using JPA annotation (hibernate annotations). Is it possible to use liquibase then?
3
votes
1answer
99 views
Running liquibase in java code
I'm trying to execute in Java code analogue of Ant's "updateDatabase" task:
Main.main( new String[]{"--defaultsFile=db/properties/db.test.properties --logLevel=debug update"} );
First, I could not ...
2
votes
1answer
546 views
is there any liquibase issue with hibernate hbm2ddl create?
i'm having a light problem with liquibase and hibernate.I expect hibernate to create the schema when the hbm2ddl is set to create and then have liquibase polulate the database with an sql script file.
...
2
votes
1answer
431 views
how to generate liquibase changelog with insert statement
i'm getting my hands around the liquibase library and i'ld like to mimic working with existing database. So from command line i manage to generate the changelog and i was wondering whether it's ...
1
vote
1answer
58 views
Maven turn off default goal execution
I have next question:
I use liquibase maven plugin and by default when i making mvn clean package it dropAll tables and updates them.
<code>
<plugin>
...
1
vote
1answer
293 views
How do I mimic Hibernate hbm2ddl “create” behaviour in Liquibase?
I've worked with liquibase 1.9.5 for a while now and got it to replace hibernate hbm2ddl strategy of creating tables and loading fixtures in it. Since it's a maven project and since I use hsqldb ...
1
vote
1answer
396 views
Liquibase drop constraint without knowing it's name
We use liquibase to keep track of our database changes..
First changeSet contains those lines:
<column name="SHORT_ID" type="INTEGER">
<constraints unique="true" />
</column>
...
1
vote
1answer
283 views
Liquibase Rollback Custom SQL
I can't figure out how to rollback custom Sql within a changeset. Any thoughts?
I'd like to do this:
<changeSet author="Charlie White" id="15" runAlways="false" runOnChange="false" ...
1
vote
1answer
333 views
Liquibase: How to execute Servlet Listener before EntityManager construction
I manage to issue a Liquibase Update as described in Liquibase Servlet Listener.
<listener>
<listener-class>liquibase.servlet.LiquibaseServletListener</listener-class>
...
1
vote
4answers
312 views
Java SQL database independence
I have been looking for an alternative to Hibernate for various reasons. I came across Liquibase and i like the idea so i am willing to try it. Liquibase will cater for database creation/modification ...
0
votes
0answers
74 views
Liquibase drop constraint
I am truing to drop unique constraint using Liquibase
<code>
<changeSet id="it05-k44" author="igr">
<dropUniqueConstraint tableName="ext_event" ...
0
votes
1answer
88 views
Tests are not started after db creation by liquibase
I'm testing datasource layer using dbunit, junit, liquibase, hsqldb.
I'm using in memory-state of hsqldb.
Each time I start test, I create db structure using liquibase via command line:
...
0
votes
0answers
111 views
Difference between storing a DBUnit file in version control and using Liquibase for Database Version control?
What is the difference between storing a DBUnit database-loadable xml file in version control, and using Liquibase for database version control?
I'm relatively familiar with DBUnit having used it in ...
0
votes
2answers
223 views
Creating a database changelog xml file from an existing database (including stored procs) using Liquibase
Is it possible to create an initial database changelog xml file from the existing state of the database?
I believe I've generated the schema using generateChangeLog, but it doesn't seem to return the ...
0
votes
1answer
234 views
Error in liquibase table naming with hsqldb (in memory).Need a workaround
I'm using liquibase on a project and i just realize what makes my build fails.i've successfully use command line generateChangeLog against the same schema in mysql and included that file in my ...
0
votes
1answer
206 views
Liquibase, “Migration Failed: Java heap space” error when generateChangeLog with “data”
I am trying to create a baseline on one of my development database using liquibase, here's my environment
- Database, -> Oralce 10g, with 500+ Tables with lots of configuration data, the oracle export ...
0
votes
1answer
368 views
Liquibase diffChangeLog against a Hibernate mapping definition
This question is related to "Hibernate using JPA (annotated Entities) and liquibase".
I was actually wondering what to expect when doing a Liquibase diff against a Hibernate mapping definition.
What ...
0
votes
1answer
566 views
Liquibase diff generates changeset using wrong case on tablenames
I'm performing a diff on a remote mysql database using LiquiBase, and finding that the changeset that is generated uses the incorrect casing for table names (all lowercase). This subsequently causes ...