So i have a list and when the user selects an item and clicks delete i want it to delete the record from the record store, here is the code i have which doesn't work:
i = list.getSelectedIndex();
RecordEnumeration re = null;
try {
re = rs.enumerateRecords(null, null, true);
} catch (RecordStoreException rse ) { }
try {
rs.deleteRecord(i);
} catch (RecordStoreNotOpenException ex) {
ex.printStackTrace();
} catch (InvalidRecordIDException ex) {
ex.printStackTrace();
} catch (RecordStoreException ex) {
ex.printStackTrace();
}
It throws an InvalidRecordIDException, I tried entering a manual value which also never worked.