Hi,
I'm using Hibernatetool to generate my DB from EJB3 PAR File.It works fine, but...I would like to generate the "delta" update DLL in file instead direct execution in database.
My ant target is:
Code:
<target name="bd.ddl" depends="init">
<hibernatetool destdir="${build.dir}">
<ejb3configuration />
<classpath>
<path location="${build.dir}/${application.name}.jar" />
</classpath>
<hbm2ddl export="false" outputfilename="${application.name}_sql_create.ddl" />
<hbm2ddl export="false" update="true" outputfilename="${application.name}_sql_update.ddl" />
</hibernatetool>
</target>
But the file "${application.name}_sql_
update.ddl" was not generated. The Hibernatetool direct execute the delta updates in DB...
What's wrong?
Versions:
hibernate - 3.2.0cr1
hibernate-annotations - 3.1beta9
hibernate-entitymanager - 3.1beta7
hibernate-tools - 3.1.0beta5