iberck
iberck

Reputation: 2430

Available RecordStore size

How can I get the total ROM memory size available for Recordstore in a midlet ?

Upvotes: 1

Views: 524

Answers (1)

Charles Harley
Charles Harley

Reputation: 7234

You can try creating an empty record store and using the methods RecordStore.getSizeAvailable() and RecordStore.getSize() to determine the total maximum size of a single record store. From experience most devices don't put a restriction on the number of record stores your application can create.

Upvotes: 2

Related Questions