Скажем, у нас есть таблица, созданная как:
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')».