ColdFusion (Railo) ORM 实体属性中的 Now() 作为默认值?
我使用的一个常见设计是设置一个日期列,并将当前日期作为默认值。对于 SQL Server,我使用 getDate(),对于 MySQL,我使用 now() 或 current_timestamp。
在 ORM 中实现 MySQL 解决方案似乎是这样:
property name="dtSaved" ormtype="date" dbdefault="now()";
但是,这不起作用,但也不会抛出错误。当我运行 ORMReload() 时,它似乎卡在这个表上,并且没有创建后面(按字母顺序)的实体。 (我使用的是 dbcreate="dropcreate")
请注意,这是 Railo 3.3.1,而不是 Adobe ColdFusion 9。
A common design I use is to set a date column with the current date as the default. For SQL Server I use getDate() and for MySQL now() or current_timestamp.
Implementing a MySQL solution in ORM, seemed the way to do it would be:
property name="dtSaved" ormtype="date" dbdefault="now()";
However, this isn't working, but isn't throwing an error either. When I run ORMReload(), it seems to get stuck on this table, and none of the entities that come after (alphabetically) get created. (I'm using dbcreate="dropcreate")
Note that this is Railo 3.3.1, not Adobe ColdFusion 9.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在构造函数中设置动态默认值,如下所示:
John Whish 的评论 – 2010 年 11 月 22 日,
来自:
http://www .aliaspooryorik.com/blog/index.cfm/e/posts.details/post/coldfusion-9-orm-example-215
You can set a dynamic default value in your constructor, so something like this:
Comment by John Whish – November 22, 2010
from:
http://www.aliaspooryorik.com/blog/index.cfm/e/posts.details/post/coldfusion-9-orm-example-215