说,我们有一个表创建为:
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')”文本。