如何在 CF9 ORM 中定义 Not Null 列?
我尝试将 @required true 添加到属性中,但 CF9 ORM 生成的表仍然为 Nullable。
有什么方法可以使列成为不可为空的列吗?谢谢。
I tried added @required true to a property, but the table generated by CF9 ORM is still Nullable.
Any way to make a column a non-nullable column? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
@notnull true
@notnull true
如果您使用的是 Javadoc 样式:
如果您没有使用 Javadoc 样式,则可以向属性添加属性:
当使用
notnull
时,我还将其加倍:这当然不是强制性的 - 我只是认为这使意图更加明确。
http://help.adobe。 com/en_US/ColdFusion/9.0/Developing/WSB7BEC0B4-8096-498d-8F9B-77C88878AC6C.html
If you're using the Javadoc style:
and if you're not you can add an attribute to the property:
When using
notnull
I also double it up with a:It certainly isn't mandatory - I just think it makes the intent more clear.
http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSB7BEC0B4-8096-498d-8F9B-77C88878AC6C.html