从powerbuilder中的datetime减去一分钟

时间:2014-09-22 06:05:50

标签: powerbuilder powerbuilder-conversion

我已经看到很多关于如何从另一个中减去一个日期时间以及如何将日期添加到日期时间的信息。但以下让我头疼。 如何在powerbuilder中减去1分钟的日期?请帮助和支持。

谢谢&问候 Rahul G

2 个答案:

答案 0 :(得分:1)

如果你使用的是powerbuilder.net,你可以用2行代码完成:

System.DateTime newDate
newDate =  System.DateTime.Now.AddMinutes(-1);

答案 1 :(得分:0)

这是在PowerScript中完成的。如果你使用DateAdd函数在SQL中执行它会更容易。

DateTime ldt_thedate,ldt_newdate
时间lt_thetime

//获取当前日期时间
ldt_thedate = DateTime(Today(),Now())

//减1分钟 lt_thetime = RelativeTime(时间(ldt_thedate), - 1)

//汇总日期时间
ldt_newdate = DateTime(日期(ldt_thedate),lt_thetime)