在数据库中将日期和时间存储为纪元与本机日期时间格式

发布于 2024-08-28 23:29:59 字数 276 浏览 4 评论 0原文

对于我的大多数任务,我发现使用纪元格式的日期和时间要容易得多:

  • 计算时间跨度
  • 或确定某个事件是否发生在另一个事件之前或之后是微不足道的,
  • 如果数据来自不同的地理来源,我不必处理时区问题,
  • 在脚本语言的情况下,我通常从数据库中获取当我请求日期时间类型的列是一个字符串,我需要解析它才能使用它。
  • 这个列表可以继续下去,但对我来说,为了保持代码的可移植性,这足以放弃数据库的本机日期时间格式并将日期和时间存储为整数。你们觉得怎么样?

    For most of my tasks I find it much easier to work with date and time in the epoch format:

  • it's trivial to calculate timespan
  • or determine if some event happened before or after another,
  • I don't have to deal with time-zone issues if the data comes from different geographical sources,
  • in case of scripting languages what I usually get from database when I request a datetime-typed column is a string that I need to parse in order to work with it.
  • This list can go on, but for me in order to keep my code portable that's enough to ditch database's native datetime format and store date and time as integer. What do you guys think?

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

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

    发布评论

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

    评论(3

    淑女气质 2024-09-04 23:29:59

    您应该能够通过使用 UTC 日期时间来解决时区问题。我知道 C 有一个将纪元时间转换为 UTC 的函数。我找不到一个可以走另一条路的人,这让我很困惑。

    You should be able to solve the time zone issue by using UTC datetimes. I know C has a function for converting epoch times to UTC. I couldn't find one to go the other way, which confuses me.

    心奴独伤 2024-09-04 23:29:59

    我认为我非常习惯 MVC 中正确的模型对象和方法,这些日期和时间功能变得微不足道。我取决于日期和时间时间库进行计算。很少有时候我必须自己编写,实际上那些时候我忽略了这个功能已经在库中的事实。如果您使用 PHP,请从 Zend Framework 获取日期和时间库。一旦开发了模型,就可以重复使用它。那么您就不必关心日期和时间如何存储在数据库中。

    I think I'm so use to proper Model objects and methods in MVC these dates and times functionality becomes trivial. I depend on the date & time library to the calculations. There's very few times where I have to write my own and and actually those times I overlooked the fact that the functionality was in the library already. If you are using PHP grab the date and time library from the Zend Framework. Once you have developed your model reuse it. Then you don't care how the date and time is stored in the DB.

    别闹i 2024-09-04 23:29:59

    使用数据库的 DATETIME 类型的主要原因是 POSIX time_t 的范围非常有限;你不能存储超过臭名昭著的 Y2038 或 1904 年之前的日期。由于许多数据库需要存储历史或未来日期,因此有一个完整的范围且通常可移植的 DATETIME;如果事实上 POSIX 纪元时间对您更有用,那么请继续使用它们。

    The primary reason for using the database's DATETIME type is that the POSIX time_t has a very limited range; you cant store dates beyond the infamous Y2038, or before something around 1904. Since many databases need to store historical or future dates, there is a full range and usually portable DATETIME; if in fact POSIX epoch times are more useful to you then go ahead and use them.

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