Hello,
This is with hibernate3 tools. Under artifact generation when we create artifacts it generates us the mapping files and object. it is all working, but when we try to run schema export, (for oracle db) we get a missing left paranthesis error.
The reason is:
<column name="DEFINITION" not-null="false" sql-type="VARCHAR2" />
oracle does not like this, since one has to define the length of varchar 2.
<column name="DEFINITION" leghth="20" not-null="false" sql-type="VARCHAR2" />
does not work as well, but:
<column name="DEFINITION" not-null="false" sql-type="VARCHAR2(20)" />
works fine. I guess this qualifies as a bug.
|