BrettStuart
BrettStuart

Reputation: 325

Creating a DB in RAM on a BlackBerry device. Possible?

My app reads a feed from a server on the app start. it then inserts all the data into a SQLite DB and the data is only read during the a instance of the running app, the data is current.

Unfortunately SQLite wont run on Blackberry devices without a SDCard and not all device have a device storage option.

Is there any way to create a DB during app-load in RAM and then close on unload? I've looked at DB's that do this in Java like H2 but what about getting something like that to work on a BB device?

Upvotes: 0

Views: 67

Answers (1)

memo
memo

Reputation: 441

well how big is your app? do you really need a db or just a few tables to hold data while the app is running? couldnt you just implement a small mini super simple db?

Upvotes: 1

Related Questions