Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 Phonegap 在 SQLite 数据库中存储日期和时间?我尝试将数据类型用作“NUMERIC”并使用 DATETIME('now') 插入查询。但我收到一个错误:“DBConnect 错误处理 sql:undefined”。
使用 Phonegap 在 SQLite 数据库中存储日期和时间的最佳方法是什么?我还需要按此表中的日期和时间排序。
日期时间列应创建为varchar(40) (而不是像 Access 中那样的数字)
varchar(40)
内部表示是 2012-08-31 hh:mm:ss。
所以Select * from x ORDER BY dt DESC将是最新的
Select * from x ORDER BY dt DESC