this is my liquibase.properties file:
I need connection_string property, because i have executeCommand tag in my changeset:
<executeCommand executable="sqlplus">
<arg value="${connection_string}" />
<arg value="@/home/svn/dml/INSERT_INTO_COUNTRIES.sql" />
</executeCommand>
- #Liquibase.properties
- driver: oracle.jdbc.OracleDriver
- classpath: ojdbc7.jar
- url: jdbc:oracle:thin:@10.0.2.1:1521:mydb
- username: USER
- password: pswd
- liquibase --changeLogFile results/changelog.xml --logLevel debug -Dconnection_string="USER/pswd@mydb" update
- 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:
<executeCommand executable="sqlplus">
<arg value="${connection_string}" />
<arg value="@/home/svn/dml/INSERT_INTO_COUNTRIES.sql" />
</executeCommand>