Community
Participate
Working Groups
Build Identifier: 2.1.0 EclipseLink normally generates SQLs like: SELECT t0.ID, t1.NAME FROM MAN t0, WIFE t1 WHERE t0.ID = t1.MAN_ID Now it is not possible to tell EclipseLink, that it should use full table names for aliases to make the query more readable? SELECT t0_MAN.ID, t1_WIFE.NAME FROM MAN t0_MAN, WIFE t1_WIFE WHERE t0_MAN.ID = t1_WIFE.MAN_ID I think Hibernate has a similar feature. It would be nice to have this feature in EclipseLink. see http://stackoverflow.com/questions/4024931/how-to-tell-eclipselink-to-use-full-table-names-for-aliases-in-sql/4033532 Reproducible: Always Steps to Reproduce: no
The Eclipselink project has moved to Github: https://github.com/eclipse-ee4j/eclipselink