I noticed that the Grails hibernate plugin does not support the hibernate load function?Does anybody know why that is?In all of the documentation that I have seen, it seems that the accepted way to de
is there a special way with gorm to map a three domain classes relationship like this: 1 person belongs to N companies with M given roles (one or more roles for a given company)
I created simple domain class with map within it. class Foo { Map bar } Bar mapping will be created as sth like:
According to the Grails GORM guide, subclasses of domain classes share the same table as the par开发者_开发百科ent class unless tablePerHierarchy is set to false.
select b.security_type, b.symbol, b.security_description, b.trade_date_qty as \'axys_qty\', c.trade_date_qty as \'fidelity_qty\',
I need to populate a couple of tables from a db that was c开发者_运维技巧reated when the grails app was run. I kept the \"version\" column for hibernate\'s locking strategy, so I need to know what val
I have a table which has records that need to be periodically cleared according to a set of criteria.
Lets say I have the following one-to-many relationship: Site has many Users User belongs to one Site I\'ve setup the relationship like this
I have following two domain classes in Grails 1.1.2: class A implements Serializable { MyEnumType myField
This question is in two parts, first part is about clearing a list and second part is about assigning an owner to an object.