簡體   English   中英

違反唯一鍵約束

[英]Violation of Unique Key constraint

我正在使用grails,並且嘗試在控制器中創建新的EducationType時遇到以下問題

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

如果我在控制器中設置了以下對象來創建這些對象,那么怎么可能會收到這樣的消息:

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)  
          }

我建議改變你的約束

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

我也將代碼更改為此

   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)  
  }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM