Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1113557
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T02:52:37+00:00 2026-05-17T02:52:37+00:00

I want to create a simple CRUD application to test out the data handling

  • 0

I want to create a simple CRUD application to test out the data handling capabilities of the Blackberry.

How do I create a simple save function?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T02:52:37+00:00Added an answer on May 17, 2026 at 2:52 am

    In this example I’m storing a vector in the persistent store.

    You have to come up with a store ID, which should be of type long. I usually create this by concating the fully qualified Application’s Class name to some string that makes it unique with in my application.

    //class Fields...
    //Use the application fully qualified name so that you don't have store collisions. 
    static String ApplicaitonID = Application.getApplication().getClass().getName();
    
    static String STORE_NAME    = "myTestStore_V1";
    long storeId = StringUtilities.stringHashToLong( ApplicationID + STORE_NAME );
    private static PersistentObject myStoredObject; 
    private static ContentProtectedVector myObjects;
    //End class fields.
    

    Example of loading a Vector from the store:

    myStoredObject = PersistentStore.getPersistentObject( storeId ); 
    myObjects = (ContentProtectedVector) myStoredObject.getContents();
    //Print the number of objects in storeage:
    System.out.println( myObjects.size() );
    
    //Insert an element and update the store on "disk"...
    myObjects.addElement( "New String" );
    myStoredObject.setContents(myObjects);
    myStoredObject.commit();
    

    Example of initializing this store and saving it to disk for the first time:

    myStoredObject = PersistentStore.getPersistentObject( storeId ); 
    myObjects = (ContentProtectedVector) myStoredObject.getContents();
    if(myObjects == null)
        myObjects = new ContentProtectedVector(); 
    myStoredObject.setContents(myObjects);
    myStoredObject.commit();
    

    If you want to commit changes (aka save changes to disk), you need to repeat the bottom two lines. setContents(OBJ); and Commit().

    You can store the following without having to do anything special:

    java.lang.Boolean 
    java.lang.Byte 
    java.lang.Character 
    java.lang.Integer 
    java.lang.Long 
    java.lang.Object 
    java.lang.Short 
    java.lang.String 
    java.util.Vector 
    java.util.Hashtable 
    

    @see : http://docs.blackberry.com/en/developers/deliverables/17952/Storing_objects_persistently_1219782_11.jsp

    To store your own Classes, they (and all sub classes) have to implement the “Persistable” interface. I recommend that you do this, as these stores get cleaned up automatically when your application is uninstalled. This is because the OS cleans stored objects up, when “any” referenced classname in the store no longer has an application associated with it. So if your store is only using Strings, it’s never going to get cleaned up.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's say I want to create an application, fairly simple CRUD with 3-5 tables.
I want to create a simple http proxy server that does some very basic
I want to create a simple box with a header bar containing a title
I want to create a simple bit of JS code that creates an image
I want to create a very simple HTML/AJAX based GUI for a Python program.
Let's say that you want to create a dead simple BlogEditor and, one of
I'm making a simple form to create polls, therefore I want the possibility to
I want to learn how to use Struts 2 and I created a simple
I have a simple GtkStatusBar created with glade,and want to add a simple message
I want something simple in order to experiment/hack. I've created a lot interpreters/compilers for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.