Domande taggate «content-values»

10
Come inserire un record SQLite con un datetime impostato su "ora" nell'applicazione Android?
Diciamo, abbiamo una tabella creata come: create table notes (_id integer primary key autoincrement, created_date date) Per inserire un record, userei ContentValues initialValues = new ContentValues(); initialValues.put("date_created", ""); long rowId = mDb.insert(DATABASE_TABLE, null, initialValues); Ma come impostare la colonna date_created su adesso ? Per chiarire, il initialValues.put("date_created", "datetime('now')"); Non è …
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.