Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7687265
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T19:39:56+00:00 2026-05-31T19:39:56+00:00

We are using Grails with a legacy database and we need to control how

  • 0

We are using Grails with a legacy database and we need to control how ID’s get assigned to domain objects.

We have tried:

id column: "sco_id", generator:'assigned'

but we get the exception:

Batch update returned unexpected row count from update [0]; actual row
count: 0; expected: 1

we have also tried to create a custom ID generator:

public class ScoIdGenerator implements IdentifierGenerator {

    public Serializable generate(SessionImplementor session, Object object) {

        /*Generate ID here*/

        return 8;
    }

}

But it seems like the generator is being ignored in this case so we get the error

DEFAULT keyword cannot be used as column has no DEFAULT

I am not sure if these issues are specific to Grails 2.

Any help appreciated?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T19:39:57+00:00Added an answer on May 31, 2026 at 7:39 pm

    The issue here was that we were attempting to configure the id with the columns block

    static mapping = {
        table "table_name"
    
        columns {
            id generator: 'assigned', column: "id_sco", sqlType: "int"
        }   
    }
    

    Instead we needed to configure the id directly inside the static mapping block

    static mapping = {
        table "table_name"
    
        id generator: 'assigned', column: "id_sco", sqlType: "int"
        columns {
            ...
        }   
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using Grails 1.3.7. Let's say I have the domain objects Foo and Bar
I need to re-index all of my domain instances from a live legacy database
using Grails 1.1.1 I have domain in Grails Person. Person can be related to
I have developed a grails/groovy application for a legacy database which has user maintenance
When persisting domain objects using Grails/GORM I frequently find myself wondering why a save()
I'm using Grails, and I have a domain model with multiple hasMany attributes to
I'm using Grails 1.3.7 alogn with SpringSecurity and have a requirement where I need
When using Grails 1.1 together with a MySQL the charsets of the auto-generated database
I'm considering using Grails for my current project. I have a couple of requirements
I am using Grails 1.2.x (Tried both 1.2.0 and 1.2.2- same behavior) I am

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.