Tag: 内容值

如何在Android应用程序中插入date时间设置为“现在”的SQLitelogging?

说,我们有一个表格创build为: create table notes (_id integer primary key autoincrement, created_date date) 要插入一条logging,我会用 ContentValues initialValues = new ContentValues(); initialValues.put("date_created", ""); long rowId = mDb.insert(DATABASE_TABLE, null, initialValues); 但如何设置date_created列到现在 ? 为了说清楚, initialValues.put("date_created", "datetime('now')"); 是不是正确的解决scheme。 它只是将列设置为“datetime('now')”文本。