seam « Schema « JPA Q&A





1. Hibernate not using schema and catalog name in id generation with strategy increment    stackoverflow.com

I am using the hibernate increment strategy to create my IDs on my entities.

@GenericGenerator(name="increment-strategy", strategy="increment")
@Id @GeneratedValue(generator="increment=strategy")
@Column(name="HDR_ID", unique=true, nullable=false)
public int getHdrId(){
     return this.hdrId;
}
The entity has the following table ...

2. Generated queries contain schema and catalog name    stackoverflow.com

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 ...

4. Seam-gen, Hibernate catalog and Oracle "schema"    seamframework.org

12:24:41,162 INFO [Version] Hibernate EntityManager 3.2.1.GA 12:24:41,175 INFO [Version] Hibernate Annotations 3.2.1.GA 12:24:41,181 INFO [Environment] Hibernate 3.2.4.sp1 12:24:41,186 INFO [Environment] hibernate.properties not found 12:24:41,188 INFO [Environment] Bytecode provider name : javassist 12:24:41,191 INFO [Environment] using JDK 1.4 java.sql.Timestamp handling 12:24:41,561 INFO [AnnotationBinder] Binding entity from annotated class: com.company.MyObject 12:24:41,562 INFO [EntityBinder] Bind entity com.company.MyObject on table MY_OBJECT ... 12:24:41,718 INFO [DatasourceConnectionProvider] ...