Скажем, у нас есть таблица, созданная как:
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 в сейчас? Чтобы было ясно,
initialValues.put("date_created", "datetime('now')");
Неправильное решение. Он просто устанавливает столбец в "datetime ('now')" текст.