GORM is Grails' object relational mapping (ORM) implementation.
I get the following error when using a primitive attribute in my grails domain object: Null value was assigned to …
grails gormIs there a way to get a list ordered by two fields, say last and first names? I know .listOrderByLastAndFirst …
grails sql-order-by gormWith Grails there are several ways to do the same thing. Finds all of domain class instances: Book.findAll() Book.…
grails gormI do the following: def currentUser = springSecurityService.currentUser currentUser.name = "test" currentUser.save(flush: true) // some other code currentUser.gender = "…
spring hibernate grails gorm grails-2.0I have a strange situation which appears to indicate a GORM cacheing problem //begin with all book.status's as UNREAD …
grails gorm object-persistenceI have a table which has records that need to be periodically cleared according to a set of criteria. I …
hibernate grails gormI want to integrate sort, order, max and offset in a findAll query. The following works fine: def books = Book.…
grails groovy gormI've got an application that was using Grails 1.3.7 which I've just migrated to Grails 2.0. The application makes use of the …
grails gorm grails-domain-class grails-2.0