1

Is there any persistent storage for mobile application of J2me, like SQLite? If there is then please share the link or some example code of interacting a simple J2ME application with back end persistent database.

Buhake Sindi
  • 87,898
  • 29
  • 167
  • 228
Taha Iqbal
  • 41
  • 1
  • 4
  • possible duplicate of [Is there any option for local database like Sqlite for j2me - CLDC devices?](http://stackoverflow.com/questions/788397/is-there-any-option-for-local-database-like-sqlite-for-j2me-cldc-devices) – Buhake Sindi Jun 19 '13 at 09:29

2 Answers2

0

Yes, there is persistent storage for J2ME - called RMS (part of MIDP 2.0) - look here for short tutorial. RMS doesn't related to SQL, it's just for persistency.

if you're looking for SQL alike storage - read this discussion. Hope it would be helpfull.

Barmaley
  • 16,638
  • 18
  • 73
  • 146
0

Perst Lite is McObject’s version of the Perst open source, object-oriented embedded database for mobile and embedded applications on the Java ME platform (also know as Java 2 Platform, Micro Edition or J2ME).

Kindly go through the following link which contains sample program along with details about the database.

http://www.mcobject.com/j2me_database

Check the following link for the list of database supported for JavaME

http://www.coderanch.com/t/230853/JME/Mobile/List-Database-ME

Herr K
  • 1,751
  • 3
  • 16
  • 24
chiranjib
  • 5,288
  • 8
  • 53
  • 82