How to deploy a J2ME app in actual device that uses RMS?

Hi,

Apologies if the post is in the wrong place.

I have a MIDlet suite that uses RMS. The application would use certain data that comes from those .db files. The cliche is that the data should pre-exist in a .db file (I enter the data in the .db file through a separate MIDlet and close the RecordStore) prior to running the application for the first time in the device. Now I cannot understand how should I ship the .db file along with the .jar. Should I bundle it with the jar? And is there any device specific implementations?

Thanks in advance.

Regards,

Kalyan

[602 byte] By [kalyansarkar108a] at [2007-10-2 11:46:10]
# 1
You can't ship the .db file your midlet. You'll have to fill the RMS with data the first time your midlet is started.
deepspacea at 2007-7-13 5:54:32 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 2
Thank you for your answer, I am now creating the record store within the startApp() of my MIDlet. would you please read the following articleat http://www.javaworld.com/javaworld/jw-05-2005/jw-0502-midp_p.htmlCan you please explain which data files are they talking
kalyansarkar108a at 2007-7-13 5:54:32 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 3
They talk about data files that you store inside of your jar file. If you don't want anyone finding out what is in them, you can follow what was done there. Though I doudt that it would be really effective. A simple decomple would show you want to do to restore the orriginal file.
deepspacea at 2007-7-13 5:54:32 > top of Java-index,Java Mobility Forums,Java ME Technologies...