Get RecordStore data from an external middlet

164 views Asked by At

Is there any form to get the data of the recordstore from an external middlet ?

2

There are 2 answers

0
Oleh Prypin On

It is only possible if the MIDlets are in the same MIDlet suite (i.e. they are in the same .jar file), then the MIDlets share the same record stores.

Otherwise, it is impossible.

0
Lucifer On

Yes, It is possible, while creating a RecordStore , if you set the second argument of its openRecrdStore() as true then it is possible to access the RecordStore from another independent Midlet.