GORM 中 MSSQL 的 varchar(n) 等效项

发布于 2024-09-17 17:15:00 字数 507 浏览 5 评论 0原文

我想知道如果数据库是 MS SQL 2005,是否可以设置 VARCHAR 列的大小。这是我的域:

class UpdateTable {

    static mapping = {
        table 'UpdateTable'
        id column: 'UpdateFileId', generator: 'increment'
        version false
        fileName column: 'FileName', size: 50
    }

    String fileName
}

请注意,它会生成一个带有 VARCHAR(255) 的“FileName”列。我想将其设置为 VARCHAR(25)。也尝试过这个,但它不起作用

static mapping = {
    ..
    fileName column: 'FileName', length: 50
}

感谢您提供任何线索。

I would like to know if it's possible to set the size of VARCHAR column if database is MS SQL 2005. Here's my domain:

class UpdateTable {

    static mapping = {
        table 'UpdateTable'
        id column: 'UpdateFileId', generator: 'increment'
        version false
        fileName column: 'FileName', size: 50
    }

    String fileName
}

Note that it produces a 'FileName' column with VARCHAR(255). I would like to set it to just VARCHAR(25). Also tried this but it didn't work

static mapping = {
    ..
    fileName column: 'FileName', length: 50
}

Thanks for any leads on this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

北方的韩爷 2024-09-24 17:15:00

好的,我想我找到了解决方案:

static constraints = {
    fileName(maxSize: 25)
}

http://grails.1312388.n4.nabble.com/How-to-map-String-to-something-larger-than-varchar-255-td1326146.html #a1326146

ok, i think i found the solution:

static constraints = {
    fileName(maxSize: 25)
}

found this in http://grails.1312388.n4.nabble.com/How-to-map-String-to-something-larger-than-varchar-255-td1326146.html#a1326146

你另情深 2024-09-24 17:15:00

正确的方法(或者至少作为文档说)是:

static mapping = {
    fileName sqlType: 'varchar(25)'
}

The correct way to do it (or at least as the documentation says) is:

static mapping = {
    fileName sqlType: 'varchar(25)'
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文