这是我用来将一些数据插入db:
的插入方法public long insertBooking(String userId,int roomId,Timestamp checkInTime, Timestamp checkOutTime){
final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
ContentValues contentValues=new ContentValues();
contentValues.put(USER_ID, userId);
contentValues.put(ROOM_ID, roomId);
contentValues.put(CHECK_IN, dateFormat.format(checkInTime));
contentValues.put(CHECK_OUT, dateFormat.format(checkOutTime));
return database.insert(MRM_BOOKING_DETAILS_TABLE, null, contentValues);
}
MRM_BOOKING_DETAILS 表格中有一个名为 booking_id 的自动增量字段。插入新行后,此列的值将增加1.在上述方法本身完成插入后,是否可以返回行的 booking_id 而无需编写单独的选择查询?
或者,我是否必须编写单独的SQL Select查询以返回该新插入行的 booking_id ?
答案 0 :(得分:10)
long insertId = database.insert(MRM_BOOKING_DETAILS_TABLE,null,contentValues); 这一行本身返回插入行的booking_id ...