this is my liquibase.properties file:
#Liquibase.properties
driver: oracle.jdbc.OracleDriver
classpath: ojdbc7.jar
url: jdbc:oracle:thin:@10.0.2.1:1521:mydb
username: USER
password: pswd
this is my command:
liquibase
–changeLogFile results/changelog.xml --logLevel debug
-Dconnection_string=“USER/pswd@mydb” update
I would like to use command like this:
liquibase
–changeLogFile results/changelog.xml --logLevel debug update
So i need add connection_string property to liquibase.properties
file. Any idea?
I need connection_string property, because i have executeCommand tag in my changeset: