views:

58

answers:

1

I am using grails, and I am getting the following when trying to create a new EducationType in my controller

2010-10-26 17:14:49,405 [http-8080-1] ERROR util.JDBCExceptionReporter  - Violation of UNIQUE KEY constraint 'UQ__educat
ion_type__0519C6AF'. Cannot insert duplicate key in object 'dbo.education_type'.
2010-10-26 17:14:49,409 [http-8080-1] ERROR errors.GrailsExceptionResolver  - could not insert: [EducationType]; SQL [in
sert into education_type (version, name) values (?, ?)]; constraint [null]; nested exception is org.hibernate.exception.
ConstraintViolationException: could not insert: [EducationType]
org.springframework.dao.DataIntegrityViolationException: could not insert: [EducationType]; SQL [insert into education_t
ype (version, name) values (?, ?)]; constraint [null]; nested exception is org.hibernate.exception.ConstraintViolationEx
ception: could not insert: [EducationType]
        at org.jsecurity.web.servlet.JSecurityFilter.doFilterInternal(JSecurityFilter.java:382)
        at org.jsecurity.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:180)
        at java.lang.Thread.run(Thread.java:619)
Caused by: org.hibernate.exception.ConstraintViolationException: could not insert: [EducationType]
        ... 3 more
Caused by: com.microsoft.sqlserver.jdbc.SQLServerException: Violation of UNIQUE KEY constraint 'UQ__education_type__0519
C6AF'. Cannot insert duplicate key in object 'dbo.education_type'.
        at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDatabaseError(Unknown Source)
        at com.microsoft.sqlserver.jdbc.SQLServerStatement.getNextResult(Unknown Source)
        at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.doExecutePreparedStatement(Unknown Source)
        at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement$PrepStmtExecCmd.doExecute(Unknown Source)
        at com.microsoft.sqlserver.jdbc.TDSCommand.execute(Unknown Source)
        at com.microsoft.sqlserver.jdbc.SQLServerConnection.executeCommand(Unknown Source)
        at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeCommand(Unknown Source)
        at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeStatement(Unknown Source)
        at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.executeUpdate(Unknown Source)
        at org.apache.commons.dbcp.DelegatingPreparedStatement.executeUpdate(DelegatingPreparedStatement.java:102)
        ... 3 more

How is it even possible I am getting such a message if I have the following set up in my controller to make these objects:

class EducationType //the class
{
  static constraints = 
  {
      name(blank:false, unique:true)
  }
}

//the block of code to do checking to not create duplicates
          if(EducationType.findByName(type.toString())){
          edType = EducationType.findByName(type.toString())
          }else {
              edType = new EducationType(name:type)  
          }
+1  A: 

I would suggest changing your constraint

  static constraints = 
  {
      name(blank:false, nullable:false, unique:true)
  }

i would also change the code to this

   if ( type == null ) {
     // error handle, i think null will set the value
     // of the type to the string "null" and that will get 
     // saved
     return
   } 


   if( EducationType.findByName(type?.toString()) )
      edType = EducationType.findByName(type.toString())
   } else {
      edType = new EducationType(name:type)  
  }
Aaron Saunders
Its hard to tell from my error message - is it complaining about null values, or non-unique values?
Derek
did you change your code?
Aaron Saunders
I made the changes you suggested - it must be somehow violating the unique constraint because I never make it into the type==null conditional block
Derek
i dont know where you are getting that 'type' value from, you should check and see if it is the string "null"
Aaron Saunders