Liquibase/SQLite syntax error -
so have sqlite database. game (c#) able open , run quite nicely. however, maintainability , potential conflict reasons, more manageable format. our project manager suggested liquibase. i'm not sure if it's out of date or what, not convert me, , i'm not sure why. here's got:
running on windows 8.1
liquibase version 3.3.0 (http://www.liquibase.org/download/index.html)
sqlite database made using sqlite manager demo version 4.3.5 (http://www.sqlabs.com/sqlitemanager.php)
java version 8 update 25
sqlite-jdbc-3.8.7 (https://bitbucket.org/xerial/sqlite-jdbc)
the command enter is...
liquibase --classpath=sqlite-jdbc-3.8.7.jar --driver=org.sqlite.jdbc\ --url="jdbc:sqlite:gamedata.sqlite" --changelogfile=gamedb-canges.xml\ --username=username --password=password generatechangelog
and error is...
unexpected error running liquibase: liquibase.exception.databaseexception: liquibase.exception.databaseexception: java.sql.sqlexception: [sqlite_error] sql error or missing database (near ")": syntax error)
i'd try removing quotes around url. can include --loglevel=debug on command line better diagnostics.
Comments
Post a Comment