Reputation: 5523
What is the best way to implement a db in a symbian/android apps ... I need to develop a mobile app that stores data in db
Upvotes: 0
Views: 284
Reputation: 31161
For Android, there's only one best way to go: SQLite.
If you're not storing much data there are alternatives, e.g. single file text based storage, user preferences stores, ... as appropriate.
Upvotes: 0
Reputation: 1789
If you are familiar with SQL, in Symbian rather than using the (rather old) Database Example above, you might consider the newer SQL interfaces which are easier to work with:
Upvotes: 0
Reputation: 43359
If you are writing a native Symbian application then check the below given link.
http://wiki.forum.nokia.com/index.php/Database_Example
And if you are writing an app for Symbian using J2ME then you can use RMS
Upvotes: 0
Reputation: 401172
On android, your application can use an SQLite database.
See the following pages, for more explanations :
Upvotes: 4