Hello
I would like to use join in the Criterion .
There is no join related method with Criterion
I use CUSTOM like
c1 = crit.getNewCriterion(moduleField,
(Object) moduleField
+ "=JETTIGER_MODULE.MODULE_ID AND JETTIGER_MODULE.PARENT_ID="
+ item.getParentId(),
Criteria.CUSTOM);
But I got the following SQLException
java.sql.SQLException: Base table or view not found message from server:
"Unknown table 'JETTIGER_MODULE' in where clause".
Is there any way using join within Criterion ??
Thanks.
Youngho