ActiveRecord 对象类型是否可以有 varchar(max) 列?

发布于 2024-08-23 07:13:33 字数 167 浏览 6 评论 0原文

我真的希望为字符串类型的 ActiveRecord 对象的一个​​属性设置一个无限长度的列,但我不知道如何设置它。当我将长度设置为 -1(SQL Server 中 MAX 的数字)时,出现错误。

有人可以帮忙吗?

编辑:我的意思是Castle ActiveRecord。

I really want to have a column of inifinite length for one of the properties of my ActiveRecord object of type string, but I don't know how to set it. When I set the length to -1 (the number for MAX in SQL server) I get an error.

Can anyone help?

EDIT: I meant to say Castle ActiveRecord.

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

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

发布评论

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

评论(3

场罚期间 2024-08-30 07:13:33

我找到了答案。显然,如果您将长度设置为大于 4000 的值,则会将列设置为最大长度。

I found the answer. Apparently if you set the length to anything greater than 4000 it will set the column to MAX length.

罪#恶を代价 2024-08-30 07:13:33

varchar(max) 或 nvarchar(max) 类型适合您。

the varchar(max) or nvarchar(max) type is suitable for you.

醉生梦死 2024-08-30 07:13:33

将列的数据类型设置为文本....

set the data type of the column to text....

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