Book Image

BlackBerry Java Application Development

Book Image

BlackBerry Java Application Development

Overview of this book

BlackBerry Smartphone was once the domain of jet-setting business users with power suits. Now you can hardly go anywhere without seeing someone using a BlackBerry to check their messages or make a call. It's this kind of explosive growth that makes the BlackBerry ecosystem a great place to develop and market applications through the BlackBerry App World store—this book shows you how to do just that! This step-by-step guide gives you a hands-on experience of developing innovative Java applications for your BlackBerry. With the help of this book, you will learn to build your own applications to illustrate the platform, and the various capabilities that developers can use in their programs. It explores the powers of Blackberry and helps you develop professional and impressive Java applications. The book teaches how to write rich, interactive, and smart BlackBerry applications in Java. It expects the readers to know Java but not Java Mobile or the BlackBerry APIs. We will learn to build rich, interactive, and smart Java applications for the BlackBerry. The book will cover UI programming, data storage, programming network, and internet API apps. As we move on, we will learn more about the BlackBerry's device features, such as messaging, GPS, multimedia, contacts and calendar, and so on.This book also helps you build your own applications to illustrate the platform, and the various capabilities that developers can use in their programs.
Table of Contents (18 chapters)
BlackBerry Java Application Development
Credits
About the Author
Acknowledgement
About the Reviewers
Preface

Time for action - deleting records


  1. 1. Comment out the previous implementation in the SaveEntriesRMS method.

    // //Delete the existing recordstore if there is one.
    // try
    // {
    // RecordStore.deleteRecordStore("JournalEntries");
    // }
    // catch (RecordStoreException e1)
    // {
    // // Do nothing. It's entirely possible that the recordstore // //doesn't exist
    // // yet and will throw an exception. Just silently ignore it.
    // }
    
  2. 2. Add the following enumeration in the same method after the RecordStore has been opened.

    for (RecordEnumeration e = JournalStore.enumerateRecords(null, null, true); e.hasNextElement();)
    {
    int recordID = e.nextRecordId();
    JournalStore.deleteRecord(recordID);
    }
    
    

What just happened?

The program behavior didn't change at all with this latest change. Instead, you just changed how the RecordStore is cleaned when saving the data. Previously, you deleted the entire RecordStore and then recreated it with the call to openRecordStore.

This approach deletes any existing records from the...