ColdFusion (Railo) ORM 实体属性中的 Now() 作为默认值?

发布于 2024-12-29 19:29:37 字数 382 浏览 1 评论 0原文

我使用的一个常见设计是设置一个日期列,并将当前日期作为默认值。对于 SQL Server,我使用 getDate(),对于 MySQL,我使用 now() 或 current_timestamp。

在 ORM 中实现 MySQL 解决方案似乎是这样:

property name="dtSaved" ormtype="date" dbdefault="now()";

但是,这不起作用,但也不会抛出错误。当我运行 ORMReload() 时,它似乎卡在这个表上,并且没有创建后面(按字母顺序)的实体。 (我使用的是 dbcreate="dropcreate")

请注意,这是 Railo 3.3.1,而不是 Adob​​e 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 技术交流群。

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

发布评论

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

评论(1

被你宠の有点坏 2025-01-05 19:29:37

您可以在构造函数中设置动态默认值,如下所示:

component persistent="true" {
property name="measurementDate" ormtype="date";
function any init(){
if (IsNull(variables.measurementDate)){
variables.measurementDate = Now();
}
return this;
 }
}

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:

component persistent="true" {
property name="measurementDate" ormtype="date";
function any init(){
if (IsNull(variables.measurementDate)){
variables.measurementDate = Now();
}
return 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

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