다음과 같이 생성 된 테이블이 있습니다.
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')"텍스트로 설정합니다.