I have a CSV file with a list of \"banned usernames\" --it\'s about 10,000 names. Basically I want to check against this list upon user registration. I\'d like to load this list in my database but I\'
I\'m trying to create a very simple relationship between two objects. Can anybody explain me why I can\'t find the Company object via findBy method?
I\'m fighting to get the following mapping working in Grails 1.3.1 and MySQL: class Login { int id String email
For a grails application, I need to find a list of objects whose \"attr\" is one in a dynamic list of strings. The actual HQL query is more complex, but the bit I need help with is this:
I have the following Domain Class: class Metric { String name float value static belongsTo = [Person,Corporation]
Let\'s say I have a UserAccount domain class that has a UserPreferences domain class. I do this to sepa开发者_如何学编程rate the fields for organization purposes. Is there a way to tell grails/gorm th
Doe开发者_如何学Gos grails have an automatic constraint update. If we change the field in domain class to be nullable by adding constraint, it is not getting reflected in database without schema expor
OK here is stripped down version of what I have in my app Artist domain: class Artist { String name Date lastMined
I have two domains : class CodeSetDetail { String id String codeSummaryId static hasMany = [codes:CodeSummary]
I am new to grails and trying to create a form which allows a user to change the email address associated with his/her account for a site I am creating.