«content-values» 태그된 질문

10
Android 애플리케이션에서 datetime이 'now'로 설정된 SQLite 레코드를 삽입하는 방법은 무엇입니까?
다음과 같이 생성 된 테이블이 있습니다. 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')"텍스트로 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.