class Ctr_country {

    String ctr_name
    String ctr_abrev

    String toString(){
        ctr_abrev
    }
}

I am using SQLS Express as database. I want the primary key of this class (table) to be ctr_abrev.

a) How can i do so ?

Thanks in advanced, JM

link|improve this question

Just a helpful FYI, underscores in class names and attributes are frowned upon in the Java/Groovy world. CtrCountry, ctrName, ctrAbrev would be better. Grails will underscore the table/column names in your db schema or you can control them in the mapping, similar to the answer given on the ID. – Gregg May 5 '11 at 19:15
feedback

1 Answer

up vote 4 down vote accepted
static mapping = {
  id generator:'assigned', name:'ctr_abrev'
}

Grails Docs GORM id

link|improve this answer
hm thanks for the fast answer. Any problem the view of scafauldinf displaying this: "Ctr_country not found with id null" after adding 1 country ? – John May 5 '11 at 18:41
Grails scaffolding expects there to be a property called id on the class. You have two options: change scaffolding to use ctr_abrev instead of id, or change the class so that the id property maps to the ctr_abrev column. String id String ctr_name static mapping = { id generator: 'assigned', column: 'ctr_abrev' – David Betts May 5 '11 at 18:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.