Where can I find a list of all HQL keywords?
From stackoverflow
-
Try this...not sure if it's complete or exact, but it may be, as it's a list of HQL tokens.
-
In the full Hibernate zip download there is a
grammar\hql.gfile, which is the ANTLR definition for the language.In the
tokenssection you'll find all the tokens, including the keywords (they're the ones defined as strings, e.g.ALL="all"). -
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:
0 comments:
Post a Comment