使用 adobe air 和 javascript 在 sqlite 数据库中插入日期
我正在尝试使用air和javascript在sqlite db中插入日期值。 该值已插入,但当我尝试查看它时,它显示为 null。
后来我发现SQLite使用Julian格式存储日期。 如何将 JavaScript 日期对象转换为 Julian 格式?
I am trying to insert a date value in sqlite db using air and javascript. The value gets inserted but when I try and view it, it says null.
Later I found that SQLite stores date using julian format. How to convert a javascript date object to julian format?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Adobe AIR 不支持 JS 日期对象。 插入数据时,我使用
This 将日期插入数据库,但没有以有用的格式返回它。 我尝试了以下方法,效果非常好。
参考此处< /a>
Adobe AIR does not support the JS date object. While inserting data I was using
This was inserting the date in the database but was not returning it in a useful format. I tried the following and it worked like charm.
Ref Here
我得到了一些东西。
将数据插入 SQLite:
这里,重要的是 -
数据类型应该是 DATETIME。从 SQLite 取回数据:
I got something.
Inserting the data in to SQLite:
here, the important thing is -
<column>
data type should be DATETIME.Fetching the data back from SQLite: