Fan wrote:
"from club order by clubName"
Embedded error: club is not mapped [from club order by clubName]; nested exception is org.hibernate.hql.ast.QuerySyntaxException: club is not mapped [from club order by clubName]
It's saying it doesn't know what class "club" should be. I think you want: "from Club club order by club.clubName" (although maybe just "from Club order by clubName" would work). The important part is to reference your class, which presumably starts with a capital letter, and presumably is referenced in applicationContext-hibernate.xml.
-Dale --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]