How sqlite works on android?

Started by Alfy, March 05, 2015, 08:37:05 AM

Previous topic - Next topic

Ismail

Hi, I would like to ask you if you can inform me how sqlite works on android It's urgent, please help me quickly.

Christopher

In Android, SQLite is used as database. So before we start coding our app, let's understand few things about SQLite. SQLite is used as a Local Database in android.

Four Major things to understand about SQLite:

SQLite is RDBMS (Relational Database Management System)
SQLite is written in C programming language
SQLite is embedded within the Android operating System, so you don't need anything external on Android to use SQLite
To manipulate data (insert, update, delete) in SQLite database – we'll use SQL (Structured Query Language)