GORM is Grails' object relational mapping (ORM) implementation. Use [go-gorm] for the Go ORM.
GORM is Grails' object relational mapping (ORM) implementation. Under the hood it uses Hibernate 3 (an extremely popular and flexible open source ORM solution) but because of the dynamic nature of Groovy, the fact that it supports both static and dynamic typing, and the convention of Grails there is less configuration involved in creating Grails domain classes.
GORM classes also support Hibernate's query language HQL, a very complete reference for which can be found Chapter 16. HQL: The Hibernate Query Language of the Hibernate documentation.
It's also possible to GORM standalone in a non-Grails project.
Resources:
Related tags: