Hibernate version: 3.2.4
I am using Oracle 10g as my database server, so I use org.hibernate.dialect.Oracle9Dialect - declared in my hibernate.cfg.xml.
Oracle has a 30 character restriction on object names which is pretty standard so far. As far as I can see, the existing dialect implementation, does not support this, leaving any names that exceed this length cause a database error. Shouldn't this be taken care of before it reaches database?
If I want to do so, then I must write an extension for the existing dialect, right?
Thanks,
akz
|