gpt4 book ai didi

grails - 数据截断 : Data too long for column grails GSP field

转载 作者:行者123 更新时间:2023-12-02 13:47:24 25 4
gpt4 key购买 nike

我的项目中有这个域类。这是一个示例

public class empHistory {

String respField
String addInfo

static constraints = {

respField(nullable: true, maxSize:100)
updatedByUser(nullable: true, maxSize:100)
}

在我单击确定时为两个字段提供字段值后显示以下错误

Data truncation: Data too long for column 'respField' in row 1

最佳答案

我认为您可能输入了超过指定的最大值。所以如果你需要扩大尺寸,你可以这样做

public class empHistory {

String respField
String addInfo

static constraints = {

respField(nullable: true, maxSize:2000)
updatedByUser(nullable: true, maxSize:2000)
}

如果 dbcreate 状态为更新,将其更改为 createcreate-drop 然后尝试再次运行您的应用程序。这是因为数据库已经在第一个约束中创建。

关于grails - 数据截断 : Data too long for column grails GSP field,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23954399/

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