Hi,
When I am configuring Hibernate to "update" mode it is suppose to create new table along with constraints that are not existing in the database yet.
So, when I run the application it does executes DDL statements however they seems to be incorrect and Oracle throws an exception as follows:
Code:
DEBUG org.hibernate.tool.hbm2ddl.SchemaUpdate - create table T_TEST_INFO (Id number(19,0) not null, IS_TRUE INT(1), TEST_NAME varchar2(255), IS_ATTEMPTED INT(1), IS_SKIPPED INT(1), OTHER_INFO varchar2(255), primary key (Id))
ERROR org.hibernate.tool.hbm2ddl.SchemaUpdate - ORA-00907: missing right parenthesis
What is wrong here?
Platform: Spring 3.0.5, Hibernate 3.2.6.ga, Java 1.5