• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

hibernate undefined alias : 1 error

 
Greenhorn
Posts: 22
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator


Hi,
I am getting this error 'hibernate undefined alias : 1 error' when i write in hql .... and run the application

private void handleOccupationSearchCategory(StringBuffer fromClause,
StringBuffer whereClause, OccupationSearchCategory category) {
if (category != null && category.isEnabled()) {
logger.debug("Adding search criteria for occupation: " + category);
// fromClause.append(" inner join js.cvoJsOccugroups jsg ");
whereClause.append(" and js.id IN (").append(
"select 1 from CvoJsOccugroup as jsog ").append(
" where jsog.cvoOccugroup.id=").append(
category.getOccupationGroupId()).append(
" and jsog.cvoJobseeker.id=js.id");

// whereClause.append(" and
// jsg.cvoOccugroup.id=").append(category.getOccupationGroupId());
if (category.getExperienceLevelId() != null) {
whereClause.append(" and jsog.cvoExperienceLevel.id >=")
.append(category.getExperienceLevelId());
}
whereClause.append(")");
}
}
 
Ranch Hand
Posts: 69
Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Check if the line

select 1 from CvoJsOccugroup as jsog

should be

select jsog from CvoJsOccugroup as jsog
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic