PowerBuilder Classic、Web 服务和时区

发布于 2025-01-01 12:55:11 字数 88 浏览 0 评论 0原文

PowerBuilder Classic 是否支持使用时区,特别是在 Web 服务调用方面?我正在寻找类似 .NET 的 DateTimeOffset 类的东西。

Does PowerBuilder Classic have any support for working with time zones, especially in regards to web service calls? I am looking for something like .NET's DateTimeOffset class.

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

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

发布评论

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

评论(1

浅笑依然 2025-01-08 12:55:11

我不知道本机支持,但您可以使用系统 API 来解决:

  • GetTimeOfDayInfo() (似乎没有记录?来自 kernel32.dll)
  • TIME_OF_DAY_INFO 来自 Lm.h 的结构
  • NetRemoteTOD()(来自 netapi32.dll)
  • LocalhostTOD() (也未记录?来自 netapi32.dll)

Real 的 Howto 上有一个示例:从服务器获取时间和日期

I am not aware of a native support, but you can work around with the system API:

  • GetTimeOfDayInfo() (seems undocumented? from kernel32.dll)
  • TIME_OF_DAY_INFO struct from Lm.h
  • NetRemoteTOD() (from netapi32.dll)
  • LocalhostTOD() (also undocumented? from netapi32.dll)

There is an example on the Real's Howto : Get the time and date from a server

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文