How do I go about actually creating a SQLite DB-file? This command won’t work:
liquibase --driver=jdbc.driver.sqlite --changeLogFile=assets_db.xml --url=file.db update
With the error:
Migration Failed: Cannot find database driver: jdbc.driver.sqlite
It seems that you don’t have the sqlite JDBC driver.
Have you downloaded the JDBC driver for sqlite? If not try this one:
http://www.zentus.com/sqlitejdbc/
And the correct liquibase command will be:
Hope this work for you.