GORM is Grails' object relational mapping (ORM) implementation.
in Grails, Is there a way to limit the size of the column to which the enum is mapped. In …
grails gormLet's say I have definied a User object using GORM. Each user can have zero or more Login:s. Each …
grails gorm gspWhat's the best/easiest way to get a list of the persistent properties associated with a given GORM domain object? …
grails gormThe question is: how do I make GORM generate left joins instead of inner joins in this particular example? Testbed: …
grails gormIf I execute this code in the Grails console: def p = new Post(title: "T"); p.save(flush: true); // or …
grails groovy gormI've got a domain class, Widget, that I need to delete all instances out of -- clear it out. After …
grails gormController Logic: def updateObject() { Object o = Object.get(params.id as Long) o.otherObjects.clear() objectDataService.saveObject(o.id) OtherObject …
hibernate grails gorm staleobjectstateI am new to Grails. Can I use "hasOne" or "hasMany" without using "belongsTo" to another domain-class? Thanks in advance.
grails gorm grails-domain-class domain-data-modellingGrails 2.0 seems to have some changes to DataSource.groovy and I don't seem to be able to get mysql running …
mysql grails datasource gorm grails-2.0