从 iPhone call_history.db 读取日期列
我需要从 call_history.db 读取日期列。我用sqlite数据库浏览器打开它。但我读不懂。因为它说关于日期列的“1303826968”。如何在“现实生活”中读取或转换它
i need to read the date column from call_history.db . i opened it with sqlite database browser. but i can't read it. because it says like "1303826968" about date column. how can read it or convert it in "real life"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
1303826968
是自 1970 年 1 月 1 日以来的秒数。1303826968
is the number of seconds since January 1, 1970.您也可以在 SQLite 提示符下将 unix 纪元时间戳转换为本地时间。
在日期和时间函数中搜索字符串“unix”。
You can convert unix epoch timestamps to local time at the SQLite prompt, too.
Search Date and Time functions for the string "unix".