Google News
logo
Android - Interview Questions
What database is used in Android? How does it differ from client-server database management systems?
* SQLite is the open-source relational database. The SQLite engine is serverless, transactional, and self-contained. 

* Instead of the typical client-server relationship of most database management systems, the SQLite engine is integrally linked with the application. The library can also be called dynamically and makes use of simple function calls that reduce latency in database access.
Advertisement