Provides application data persistence between sessions.
The Persistent Storage collection contains various solutions to the problem of persisting application data.
The components of the Persistent Storage collection are mainly independent of each other from an architectural point of view. The only exception to this is that the relational database functionality provided by DBMS makes use of stores. However, that is a matter of implementation: the two components are alternative solutions to data persistence and are not used in combination.
The functionality of each component is threefold:
Central Repository persists application data using repositories created at build time.
Store persists application data using data streams.
DBMS persists application data using relational databases.
SQL persists application data using relational databases.
SQLite persists application data using relational databases.
The components of this collection are all used for the same purpose, persisting application data. They differ in the strategy used and in their implementation.