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.
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.