I have a problem with RMS, what I need is to delete an record and move the records after level up, is there any chance to do it? I've tried to avoid this, but all in all I end up with this :(
Is there any way to convert this:
public void profilRmsPopulator(Form fr, ChoiceGroup hg) throws RecordStoreNotOpenException, RecordStoreException{
int spacePos=0;
for (int i =1; i<=rs.getNumRecords();i++){
System.out.println("for loop\n");
spacePos=RmsToStringDumper(i).indexOf(" ");
System.out.println("spacePos: \n" +spacePos);
hg.append(RmsToStringDumper(i).substring(0, spacePos),null);
}
fr.append(hg);
}
into while (recordEnumeration.hasNextElement())? Of course with this string trimming :P
ok, maybe I'll explain the problem I'm suffering now. I've created an app on mobile which as far as now is creating a user profile and writing it in a RMS, and it's working just fine. The algorithm works like this: user is asked for name of profile and some other details, when he/she is done, Data is being saved. The schema of the record looks like this: Name_of_profile, model, brand etc. Than the program trims the records to get the name_of_profile and puts it in the choiceGroup. And it also worsk like a charm, but the real problem is with deleting, I can delete first or second record, but when I put new one [ new profile ] I'm receiving error like this:
javax.microedition.rms.InvalidRecordIDException: error finding record