1

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

Lucifer
  • 29,392
  • 25
  • 90
  • 143
iberck
  • 2,372
  • 5
  • 31
  • 41

2 Answers2

1

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.

Oleh Prypin
  • 33,184
  • 10
  • 89
  • 99
0

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.

Lucifer
  • 29,392
  • 25
  • 90
  • 143