将时间存储在数据库中
我是 Android 新手,我想存储时间并在 sq lite 数据库中检索时间。任何人都可以帮我解决这个问题。
i am new to android, i want to store the time and retrieve the time in sq lite database. Any one help me to solve the problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
知道您永远不会接受答案但仍然愿意提供帮助:
创建一个列,将日期设置为整数,并将时间存储为数字(以毫秒为单位)。所有教程和示例应用程序都是这样做的。
http://developer.android.com /resources/samples/NotePad/src/com/example/android/notepad/NotePadProvider.html
示例:
Knowing that you will never accept an answer but willing to still help:
Create a column, date as Integer, and store the time as a number (in milliseconds). That is how all of the tutorials and example apps do it.
http://developer.android.com/resources/samples/NotePad/src/com/example/android/notepad/NotePadProvider.html
Example:
Android 开发文档中有一个很好的教程,数据存储,展示如何使用它
There is a nice tutorial on Android dev documentation , Data Storage, that show how to use it
查看sqlite文档 http://www.sqlite.org/datatype3.html#datetime
look into sqlite documentation http://www.sqlite.org/datatype3.html#datetime