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 find an updateDatabase command. I've tried: update, updateSQL, but all the time I'm getting:

Errors:
  Command not passed

My db.test.properties file if it may help:

#liquibase.properties
driver: org.hsqldb.jdbcDriver
url: jdbc:hsqldb:mem:datasourcedb
username: TEST
password: TEST
changeLogFile: db/changelog/db.changelog-master.xml

I've used the ":" symbol as a separator in property file as described in liquibase.properties

What am I doing wrong? Please help.

link|improve this question

71% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Use separate strings instead of one big String:

Main.main( new String[]{
   "--defaultsFile=db/properties/db.test.properties",
   "--logLevel=debug",
   "update"
} );
link|improve this answer
Thank you, it helped! – Alexandr Sep 29 '11 at 1:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.