Hibernate version: 2.1
Hi,
I've been trying to find documentation on HQL that shows the codified syntax rules, not simply HQL examples such as those found in chapter 11 of the "Hibernate Reference Documentation" document.
For example, for the from statement one might have something like:
FROM [package.]classname [ [AS] alias] [,..., [package.]classname [ [AS] alias] ]
(the above syntax may be incorrect)
Instead of various examples like from Formula as form, Parameter as param found in the ref document.
This is typical of SQL syntax reference guides, but I haven't found anything online like this for Hibernate.
Can someone point me to such documentation if it does exist?
Thanks,
Dan
|