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());
}
RecordEnumeration– gnat Oct 7 '11 at 14:06