Comment 1 for bug 725547

Revision history for this message
Timo Westkämper (timo-westkamper) wrote :

The serialization of the schema name can now be set on via

        SQLTemplates templates = ...
        templates.setPrintSchema(true);

The schema name is now serialized into the query types via an annotation like this

@Schema("PUBLIC")
@Table("EMPLOYEE2")
public class QEmployee extends RelationalPathBase<Employee> {
    ...
}