10
如何在Android应用程序中插入日期时间设置为“现在”的SQLite记录?
说,我们有一个表创建为: create table notes (_id integer primary key autoincrement, created_date date) 要插入记录,我会使用 ContentValues initialValues = new ContentValues(); initialValues.put("date_created", ""); long rowId = mDb.insert(DATABASE_TABLE, null, initialValues); 但是如何将date_created列设置为now?为了明确起见, initialValues.put("date_created", "datetime('now')"); 不是正确的解决方案。它只是将列设置为“ datetime('now')”文本。