DB2具有CURRENT_TIMESTAMP函数,该函数以以下格式返回当前时间戳:2022年5月24日11时22分在groovy中是否有等价于CURRENT_TIMESTAMP的东西?如何将当前时间戳从groovy存储到DB2中?
rsaldnfx1#
您可以将时间戳设置为import java.sql.Timestamp;也可以将数据库列设置为时间戳。
import java.sql.Timestamp;
stmt.setTimestamp(1, new Timestamp(System.currentTimeMillis()));
1条答案
按热度按时间rsaldnfx1#
您可以将时间戳设置为
import java.sql.Timestamp;
也可以将数据库列设置为时间戳。