比方说,我们创建了一个表,作为:
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 _ create 列设置为 现在
initialValues.put("date_created", "datetime('now')");
不是正确的解决方案。它只是将列设置为“ datetime (‘ now’)”文本。