Get RecordStore data from an external middlet

179 Views Asked by At

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

2

There are 2 best solutions below

0
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
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.