These are lists of reserved keywords for various databases that are commonly used as table or column names. When naming a domain class or a property, make sure that your target platforms do not reserve that name.A useful web site allows to check for different databases:http://www.petefreitag.com/tools/sql_reserved_words_checkerBut you should double check with the documentation of the database you use or plan to use in the future.
MySQL
- order
- transaction
PostgreSQL
- cast
- constraint
- user
Grails-specific reserved words
- application - clashes with the application variable
Hibernate reserved words
See the list of keywords for HQL http://www.hibernate.org/hib_docs/reference/en/html/queryhql-expressions.html.- Member - used as a Grails domain class in the default package generates an Hibernate exception when used in HQL "find" or "findAll":



