I have recordstore to store my data.

I know when we store data into recordstore it automatic generate a record id for each record.

But how can I set record id by myself? or how can I get record id?

Because I want to use recordstore.setrecord(..) method to update my recordstore

But when I use recordenumerate to fetch recordstore and use method nextRecordID it just show odd or even id. I mean when I have 8 records and it just print out only odd or even record like 2 4 6 8. Therefore I wonder about that

I need look out a way to solve this problem

My code:

    handleRecord.openRecordStore(handleRecord.getRecordName());
    RecordEnumeration re;
    try {
         int rc = handleRecord.getRecordStore().getNumRecords();
         re = hrs.getRcs().enumerateRecords(null, null, true);

         while(re.hasNextElement()) {
             int rid = re.nextRecordId();
             System.out.println(rid);
         }
    } catch(Exception e) {
        System.out.println(e.toString());
    }
link|improve this question

56% accept rate
from what you describe it appears like you have a simple error in loop - hopping over records. Please show the code you use to iterate RecordEnumeration – gnat Oct 7 '11 at 14:06
edited Thank you – MYE Oct 8 '11 at 8:39
feedback

1 Answer

up vote 2 down vote accepted

MIDP API doesn't have method to set record id by yourself.

See RecordStore API documentation for explanation how this is supposed to work.

  • "Records are uniquely identified within a given record store by their recordId, which is an integer value. This recordId is used as the primary key for the records. The first record created in a record store will have recordId equal to one (1). Each subsequent record added to a RecordStore will be assigned a recordId one greater than the record added before it. That is, if two records are added to a record store, and the first has a recordId of 'n', the next will have a recordId of 'n + 1'..."

The code that iterates the store appears OK:

     re = hrs.getRcs().enumerateRecords(null, null, true);
     while(re.hasNextElement()) {
         int rid = re.nextRecordId();
         System.out.println(rid);
     }

if you're getting only odd or even record like 2-4-6... or 1-3-5... printed as a result, first thing to check is whether you somehow removed records that are "missing" - this could be done eg using RecordStore.getVersion method:

  • "Each time a record store is modified (by addRecord, setRecord, or deleteRecord methods) its version is incremented. This can be used by MIDlets to quickly tell if anything has been modified..."
link|improve this answer
Ok I see,Thank you very much!!! – MYE Oct 14 '11 at 15:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.