Java Hibernate, Liquibase Supports Cross Databases And Sqlite?
I'm using Spring Boot 1.5.2 with Hibernate 5 and try to support as many databases as possible (i.e: Hibernate will create all the tables in SQLite 3, then I use Liquibase as an abs
Solution 1:
The problem is Liquibase does not support SQLite very well http://www.liquibase.org/documentation/changes/add_primary_key.html , also Hibernate which needs a third party SQLite dialect and the performance for write is not good, so I think Liquibase could work well with another databases like: postgresql, mysql, hyperSQL,...
Post a Comment for "Java Hibernate, Liquibase Supports Cross Databases And Sqlite?"