SQLite in Android
SQLite in Android
BY BEZAWIT E.
Some database software
• Oracle
• Microsoft
SQLServer(powerful)
Access(simple)
• PostgreSQL
– powerful/complex free open-source database system
• SQLite
– transportable, lightweight free open-source database system
• MySQL
– simple free open-source database system
– many servers run “LAMP” (Linux,Apache,MySQL,andPHP)
–Wikipedia is run on PHP and MySQL
Android includes SQLite
SQLite is a library, runs in the app’s process
SQLite is an embedded, relational database management system (RDBMS).
SQL • Structured Query Language (SQL): a language for searching and updating a database
SQLite is a lightweight, embedded relational database management system
◦ included as part of the Android framework
◦ provides a mechanism for implementing organized persistent data storage for Android applications.