0 votes
in Android by
What database is used in Android? How it is different from client-server database management systems?

1 Answer

0 votes
by

SQLite is the open-source relational database used in Android. The SQLite engine is serverless, transactional, and also self-contained. Instead of the client-server relationship of most database management systems, the SQLite engine is integrally linked with the application. The library can be called dynamically and it can make use of simple function calls that reduce latency in database access.

Related questions

0 votes
asked Mar 29, 2023 in Android by Robin
0 votes
asked Mar 28, 2023 in Android by Robin
...