I want to know if opening an RMS record checks it as modified in javame. For example
RecordStore rs;
//First RMS access
rs.open("gamescores",true);
rs.addRecord(null,0,0);
rs.closeRecordStore;
//Second RMS access
rs = RecordStore.open("gamescores",true);
long timeStamp = rs.getLastModified();
rs.closeRecordStore();
would getLastModified() return the time of the first RMS access or of the second one.