如何将该值转换为有效日期?

发布于 2024-11-04 10:28:05 字数 168 浏览 1 评论 0原文

我从表(来自 IBSng 数据库)中捕获了 Firstlogin 字段的值。我知道它是一个 Date 但我不知道如何将其转换为有效日期。

该字段的值为:1304077351

如何将其转换为有效的日期格式?

I catch the value of Firstlogin field from a table (from IBSng Database). i know that it is a Date but i don't know how can i convert it into a valid date .

The value of the field is : 1304077351

how to convert it to a valid date format ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

何处潇湘 2024-11-11 10:28:05

这是 2011 年 4 月 29 日星期五 11:42:31 GMT 的 unix 时间戳

编辑

根据IBS,它使用postgresql作为其后端数据库。您应该能够使用 to_timestamp 对其进行转换。

That is the unix timestamp for Fri, 29 Apr 2011 11:42:31 GMT.

Edit

According to IBS, it uses postgresql as its backend database. You should be able to convert it using to_timestamp.

揪着可爱 2024-11-11 10:28:05

我找到了!谢谢安德斯

function UnixToDateTime(USec: Longint): TDateTime;
const
  // Sets UnixStartDate to TDateTime of 01/01/1970
  UnixStartDate: TDateTime = 25569.0;
begin
  Result := (USec / 86400) + UnixStartDate;
end;

I found it ! Thank you Anders

function UnixToDateTime(USec: Longint): TDateTime;
const
  // Sets UnixStartDate to TDateTime of 01/01/1970
  UnixStartDate: TDateTime = 25569.0;
begin
  Result := (USec / 86400) + UnixStartDate;
end;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文