I've the same problem as described here
In the generated SQL Informix expects catalog:schema.table
but what's actually generated is
catalog.schema.table
which leads to a syntax error. Setting:
hibernate.default_catalog=
hibernate.default_schema=
had no effect.
I even removed schema and catalog from the table annotation, this caused a different issues : the query looked like that ..table
same for setting catalog and schema to an empty string.
Versions
- seam 2.1.2
- Hibernate Annotations 3.3.1.GA.CP01
- Hibernate 3.2.4.sp1.cp08
- Hibernate EntityManager 3.3.2.GAhibernate
- Jboss 4.3 (similar to 4.2.3)