gpt4 book ai didi

mysql - 数据截断 : Truncated incorrect DOUBLE value: '3ML80909540'

转载 作者:可可西里 更新时间:2023-11-01 08:30:38 31 4
gpt4 key购买 nike

我有一个遗留数据库,相应的领域类是

class Assets{
String id
AssetsFinancial assetsFinancial = new AssetsFinancial()
static constraints = {
assetsFinancial(nullable: true)
}
static mapping = {
version false
id generator: "assigned", column: '`id`'
assetsFinancial column: '`id`', insertable: false, updateable: false
}
}

class AssetsFinancial{
Integer appraisal
Boolean doubleTerVar
static mapping = {
version false
id generator: "assigned"
}
static constraints = {
appraisal nullable: true
doubleTerVar nullable: true
}
}

当我更新 AssetsFinancial 实例的属性时,例如 assetsFinancialInstance.appraisal=2222 并且 hibernate 尝试“提交”它给我的更改

| Error 2014-12-25 18:56:34,459 [http-bio-8080-exec-9] ERROR spi.SqlExceptionHelper  - Data truncation: Truncated incorrect DOUBLE value: '3ML80909540'
| Error 2014-12-25 18:56:34,726 [http-bio-8080-exec-9] ERROR errors.GrailsExceptionResolver - MysqlDataTruncation occurred when processing request: [POST] /someController/someAction/1295448
Data truncation: Truncated incorrect DOUBLE value: '3ML80909540'. Stacktrace follows:
Message: could not execute statement
Line | Method
->> 53 | doFilter in grails.plugin.springsecurity.web.filter.GrailsAnonymousAuthenticationFilter
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 49 | doFilter in grails.plugin.springsecurity.web.authentication.RequestHolderAuthenticationFilter
| 82 | doFilter in grails.plugin.springsecurity.web.authentication.logout.MutableLogoutFilter
| 67 | doFilter in com.studentsonly.grails.plugins.uiperformance.CacheFilter
| 270 | doFilter in com.planetj.servlet.filter.compression.CompressingFilter
| 1110 | runWorker in java.util.concurrent.ThreadPoolExecutor
| 603 | run . . . in java.util.concurrent.ThreadPoolExecutor$Worker
^ 722 | run in java.lang.Thread
Caused by MysqlDataTruncation: Data truncation: Truncated incorrect DOUBLE value: '3ML80909540'
->> 3560 | checkErrorPacket in com.mysql.jdbc.MysqlIO

我花了很多时间来查找原因,但无法找出原因,任何线索都会对我有所帮助。如果需要更多信息,请询问。

更新: hibernate 日志

2014-12-26 14:51:35,099 [http-bio-8080-exec-3] DEBUG hibernate.SQL  - update assets_financial set appraisal=?,  double_ter_var=? where id=?
2014-12-26 14:51:35,100 [http-bio-8080-exec-3] TRACE sql.BasicBinder - binding parameter [1] as [INTEGER] - [1003]
2014-12-26 14:51:35,100 [http-bio-8080-exec-3] TRACE sql.BasicBinder - binding parameter [2] as [BOOLEAN] - [false]
2014-12-26 14:51:35,101 [http-bio-8080-exec-3] TRACE sql.BasicBinder - binding parameter [3] as [BIGINT] - [1298944]

最佳答案

终于找到了罪魁祸首

从SQL日志中我们可以看出2014-12-26 14:51:35,101 [http-bio-8080-exec-3] TRACE sql.BasicBinder - 绑定(bind)参数 [3] 为 [BIGINT] - [1298944] 这里的数据类型是BIGINT 但它应该是 VARCHAR 然后我在我的 AssetsFinancial

中添加 String id
class AssetsFinancial{
String id
//rest of code
}

现在一切都很好:)

关于mysql - 数据截断 : Truncated incorrect DOUBLE value: '3ML80909540' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27648515/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com