Giả sử, chúng ta có một bảng được tạo dưới dạng:
create table notes (_id integer primary key autoincrement, created_date date)
Để chèn một bản ghi, tôi sẽ sử dụng
ContentValues initialValues = new ContentValues();
initialValues.put("date_created", "");
long rowId = mDb.insert(DATABASE_TABLE, null, initialValues);
Nhưng làm cách nào để đặt cột date_create thành bây giờ ? Để làm rõ hơn,
initialValues.put("date_created", "datetime('now')");
Không phải là giải pháp đúng. Nó chỉ đặt cột thành văn bản "datetime ('now')".