Where can I find a list of all HQL keywords?
+1
A:
In the full Hibernate zip download there is a grammar\hql.g
file, which is the ANTLR definition for the language.
In the tokens
section you'll find all the tokens, including the keywords (they're the ones defined as strings, e.g. ALL="all"
).
Dan Berindei
2009-02-25 15:01:24
A:
Here is the BNF for Hibernate 2, I am not sure if this is in the same format as the hql.g files as mentioned above:
mattsidesinger
2009-02-26 01:50:09