Tagged Questions

3
votes
2answers
1k views

MIDP Java implementation of SQLite DB

Are there any MIDP implementation of SQLite db available for use of sqlite db within a MIDlet, rather than using RMS. Of course, there are Floggy and OpenBaseMovil, however they are based on RMS, but ...
3
votes
5answers
561 views

How to keep RMS after installing a new version?

I have an j2me application installed on a Nokia S40. Some configuration data is stored in the RMS. Is it possible to overwrite the installed app with a new version? How to keep RMS in the new version? ...
2
votes
5answers
3k views

Data in J2ME RecordStore does not persist across sessions

I'm building a mobile app with J2ME, and I've found that the data I write into a RecordStore can be accessed while the program is still running but it is lost after quitting and restarting it. No ...
2
votes
2answers
739 views

Java ME object persistence

I know that Serialization (Serializable) is not available in the Micro Edition of Java. It's kinda straight forward to save primitives like int and java.lang.String objects with the RMS. But if I want ...
1
vote
2answers
88 views

Listing all records j2me

I want to list all records in the record store. I've declared a list: Private List tlist = new List("Select One", List.IMPLICIT); Also enumerated the records: Form mainf; Command exit = new ...
1
vote
1answer
157 views

How to write a search method include “Like” such as SQL in J2ME

Now I try to write a small method to search in j2me, it works well but I don't know how to write a method like SQL use "Like" in j2me to search recordstore doesn't need match 100% percent. Example ...
1
vote
1answer
202 views

how to store the data in a file in j2me..?

please can anyone tell me how to store the RMS data to file and how to modify it?
1
vote
1answer
992 views

Java Micro Edition (J2ME) - Delete element from Record Store

I have a record store which holds a list of shopping items i am currently serialising the data like so ** (inside) ItemClass ** ByteArrayOutputStream byteOutputStream = new ...
1
vote
1answer
225 views

Is it possible to open and edit 2 or more RecordStores at the same time in j2me?

I was wondering if it is possible in j2me to have 2 or more recordStores open at the same time. I basically want to be able to add/remove records from 2 different recordStores in the same execution of ...
0
votes
2answers
108 views

How to search and sort in J2me (ascending or descending)

I am wondering about how to search in J2ME. I have been searching in the internet, so many result show to me, and I see in Java2s.com I got a result use RecordFilter and matches method for search in ...
0
votes
1answer
50 views

How to delete all the local database in the J2ME application

I want to refresh my J2ME application means I want to delete all the local db which the mobile contains. I know how to do above task in android application by "Clear Data" by using this we can delete ...
0
votes
2answers
116 views

How to view RMS file in J2ME?

I have J2ME app in which RMS is used as a database. I just wanted to know: where is the Location of rms file in j2ME How can we read it manually using any software and modify it? I am asking this ...
0
votes
1answer
112 views

How to set record id by myself in J2ME

I have recordstore to store my data. I know when we store data into recordstore it automatic generate a record id for each record. But how can I set record id by myself? or how can I get record id? ...
0
votes
1answer
1k views

Java Micro Edition (J2ME) - Update Record using recordstore enumeration

I have a record store of items which have (name, quantity, owner, status) Now when the user triggers an event I want to set the status of all items in my RecordStore with "purchased" re = ...
0
votes
3answers
1k views

Using RecordStore in Java J2ME

I am currently doing some J2ME development. I am having a problem in that a user can add and remove elements to the record store, and if a record gets deleted, then that record is left empty and the ...
0
votes
4answers
982 views

Store data with MIDP RMS and retrieve in PC

How can I retrieve data stored using MIDP's RMS? I would like to collect some data in the handset and then be able to process it in the PC's application. If I can't do it using RMS, is there a way to ...
0
votes
0answers
906 views

Why can't I update my J2ME RecordStore?

I basically want my Midlet the ability to edit records. I have this code the information is added as follows protected void searchForNameToEdit() { Editrecord.deleteAll(); try ...
0
votes
3answers
954 views

Store large amounts of data in RMS

I need to store large amount of data using RMS API through J2ME. How can I store that multiple-column data, given they must be hardcoded so I need to store those multiple columns and rows data. How ...
-1
votes
1answer
52 views

Delete record recordstore

So i have a list and when the user selects an item and clicks delete i want it to delete the record from the record store, here is the code i have which doesn't work: i = list.getSelectedIndex(); ...