10
Як вставити запис SQLite з датою, встановленою на "зараз", у програму Android?
Скажімо, у нас створена таблиця: 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_create до тепер ? Щоб було зрозуміло, initialValues.put("date_created", "datetime('now')"); Не є правильним …