如何将UTC格式的日期列的默认值设置为“now”我认为答案涉及
column element上的defaultValueComputed属性.
文件规定:
defaultValueComputed A value that is returned from a function or
procedure call. This attribute will contain the function to call.
什么标准是被称为应该写的功能? Java的?该函数应该是要使用的数据库供应商特定日期函数吗?有没有更多关于这个话题的文件?
解决方法
也许
this topic在液碱论坛会有帮助吗?
我认为defaultValueComputed将采用一个特定于数据库的函数来表达“now”.在MysqL中,它将是CURRENT_TIMESTAMP,因此它可能如下所示:
<createTable tableName="D_UserSession"> <column name="ts" type="TIMESTAMP" defaultValueComputed="CURRENT_TIMESTAMP"/> </createTable>
(从论坛帖子复制.)