Ant command writeDataToDatabase does not honor failOnError property
-------------------------------------------------------------------
Key: DDLUTILS-167
URL: https://issues.apache.org/jira/browse/DDLUTILS-167
Project: DdlUtils
Issue Type: Bug
Components: Ant Tasks
Environment: Ant script run from Eclipse
Reporter: Mariusz LipiĆski
Assigned To: Thomas Dudziak
This is my Ant target:
<target name="install-data">
<databaseFromDDL schemaFile="${input.dir}/schema.xml">
<database driverclassname="${jdbc.driver}"
url="${jdbc.url}" username="${jdbc.username}" password="${jdbc.password}" />
<writedatatodatabase datafile="${input.dir}/data.xml"
usebatchmode="no" failOnError="false" ensureForeignKeyOrder="false" />
</databaseFromDDL>
</target>
Whether I put "false" or "true" as a value for failOnError property it fails on
errors. It seems that the value is not read and propagated correctly.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.