10
एंड्रॉइड एप्लिकेशन में 'अब' के लिए एक सेटटाइम के साथ एक 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 कॉलम कैसे सेट करें ? इसे स्पष्ट करने …