Tagged Questions

class in Java ME MIDP API - javax.microedition.rms.RecordStore

learn more… | top users | synonyms

2
votes
1answer
37 views

Understanding synchronization needs for RecordStore in J2ME

Reading up on the RecordStore documentation, one can read the following: Record store implementations ensure that all individual record store operations are atomic, synchronous, and serialized, so ...
2
votes
1answer
155 views

What's a good way to represent and store data in Java's RecordStore?

Given that Java ME allows for no reflection and is quite stripped down, what would a good approach to storing data in a RecordStore be? I thought of devising a JSON-like syntax adapter class which ...
1
vote
3answers
166 views

Is this an appropriate use of a MySQL enumeration data type?

I have recently started doing freelance PHP + MySQL development in my free time, to supplement my income from a full-time job where I write C#/SQL Server code. One of the big database-related ...
1
vote
1answer
175 views

Available RecordStore size

How can I get the total ROM memory size available for recordstore in a midlet? thanks in advance
1
vote
1answer
220 views

Midlet throws javax.microedition.rms.RecordStoreException: error opening record store file in Samsung emulator

I'm using the Samsung SDK 1.2.0 Beta in Netbeans 6.8. I'm trying to test my midlet for accessing the record store management system. This statement RecordStore rs = ...
1
vote
1answer
349 views

Weird RecordStore behavior when RecordStoreFullException occurs

I'm developing a small J2ME application that displays bus stops timetables - they are stored as records in MIDP RecordStores. Sometimes records can not fit a single RecordStore, especially on record ...
1
vote
1answer
268 views

J2ME : Edit RecordStore Manually

Can I edit the stored values of a RecordStore manually? If so, which programs do i need, or JVM stores those data in a file without any encryption? Any help or advice will be appreciated.
1
vote
1answer
734 views

J2ME Application problem! (Null pointer exception)

I'm creating an application that installs 3 Record Stores for the first run. Then on it has to work with the already installed values. The application works fine during the first run both in the ...
1
vote
1answer
1k views

Error creating javax.microedition.rms.RecordStore in NetBeans 6.0

I'm trying to write an application with J2ME that uses javax.microedition.rms.RecordStore to store persistent data. I'm developing this project in NetBeans 6.0 and J2ME 2.2 on Gentoo. When I try to ...
0
votes
1answer
27 views

How to Display All The RecordStore available in Device

I am Developing a Java ME Application. Here I want to list all the RecordStore available. How can I get the names of all the RecordStore exists ?
0
votes
2answers
120 views

J2me RecordStore error : java.lang.NullPointerException: 0 - What is wrong in below code

Is there anything wrong in function shown below. The only bug that I found while running this code in debugger is "java.lang.NullPointerException: 0". I wasted my last many hours in figuring out ...
0
votes
1answer
150 views

Problem with J2ME RecordStore update, delete operation

I create a List showing data from a RecordStore. I tried to update a record and the re-display the list (re-open the same RecordStore), but the updated item doesn't change (still contain the old ...
0
votes
2answers
174 views

RecordStore or PersistentStore to save data on blackberry?

What is the best solution for saving data for Blackberry application?
0
votes
2answers
151 views

RecordStore and photos taken from the phone

When the user takes photos with his phone I want LWUIT to get a specific photo to add to a recordstore and later retrieve that photo. How to achieve that ?
0
votes
1answer
372 views

j2me delete record from recordstore

Problem: unable to use deleteRecord() properly Background: I have a simple j2me application where I add various strings to the record store and try to manipulate the contents of the record store. I ...
0
votes
1answer
196 views

J2ME Record deletion problem in RecordStore

I am using a recordstore to store some data,and each data is being shown in form of list elements.In my application,i am having a feature in which i can delete a particular list element.When i perform ...
0
votes
1answer
180 views

Wants to create an record store in J2me Application as soon as the application starts

working on a j2me project... what i need to do is create a record store from a preexisting xml file (in d jar itself) so i can read and write data from it..... and wants to do this as sson as the ...
0
votes
2answers
82 views

Get RecordStore data from an external middlet

Is there any form to get the data of the recordstore from an external middlet? Thanks in advance
-2
votes
3answers
129 views

record store in j2me

I have 2 forms and the data should be stored in the record store only after filling all the fields in both the forms and if we switch from one form to another the fields in the form should contain ...