将当前时间戳从groovy插入到db2

f3temu5u  于 2022-11-01  发布在  DB2
关注(0)|答案(1)|浏览(216)

DB2具有CURRENT_TIMESTAMP函数,该函数以以下格式返回当前时间戳:2022年5月24日11时22分
在groovy中是否有等价于CURRENT_TIMESTAMP的东西?如何将当前时间戳从groovy存储到DB2中?

rsaldnfx

rsaldnfx1#

您可以将时间戳设置为import java.sql.Timestamp;也可以将数据库列设置为时间戳。

stmt.setTimestamp(1, new Timestamp(System.currentTimeMillis()));

相关问题