Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is RMS ?

Answers were Sorted based on User's Feedback



What is RMS ?..

Answer / jguru

The Record Management System (RMS) is a simple
record-oriented database that allows a MIDlet to
persistently store information and retrieve it later.
Different MIDlets can also use the RMS to share data.

Is This Answer Correct ?    5 Yes 0 No

What is RMS ?..

Answer / b.chandra sai mohan

to create a Record store

RecordStore rs= RecordStore.OpenRecordStore(String
name,boolean CreateIfNecessary)
CreateIfNecessary=true.(if REcord Store doesnot exist it
will create otherwise it opens existing one)
CreateIfNecessary=false; and REcorsStore doesnot exist we
will get REcordStorenotfound exception .
closeRecoreStore()---->To close REcord stre
to add newREcord we have method
int addRecord(byte[] data,int offset,int numbytes)
byte data[]=rs.getRecord(int recordID);

Is This Answer Correct ?    1 Yes 0 No

What is RMS ?..

Answer / alex

this is a complete example for RMS

RecordStore tempStore = null;
String strStore = "location:dhaka";
byte[] bs=strStore.getBytes();
int RecordId = 0;
try
{
tempStore =
RecordStore.openRecordStore("TestRecordStore", true,
RecordStore.AUTHMODE_ANY, true);
RecordId = tempStore.addRecord(bs, 0, 5);
byte[] resultByte = tempStore.getRecord(RecordId);
String value = new String(resultByte);
System.out.println(value);
}catch(Exception ex)
{
System.out.println(ex.getMessage());
}

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More J2ME Interview Questions

What is SDK ?

1 Answers  


What is PCS ?

1 Answers  


what is midlet>difference beiween midlet and servlet

1 Answers  


what are dynamic events

0 Answers  


What is PRC ?

1 Answers   Sync Wave,


what is midlet?

7 Answers  


Explain CVM ?

1 Answers  


What is API ?

7 Answers  


I have problem with connection between Database and Wireless device, plz send me a sample code.

3 Answers   Mascon,


how many types of string?

2 Answers   Wipro,


What is i-mode

1 Answers  


What is LCDUI ?

6 Answers  


Categories