คำถามติดแท็ก content-values

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_created เป็นตอนนี้ได้อย่างไร? เพื่อให้ชัดเจน initialValues.put("date_created", "datetime('now')"); ไม่ใช่ทางออกที่ถูกต้อง เพียงแค่ตั้งค่าคอลัมน์เป็นข้อความ "datetime ('now')"
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.