Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 770 Bytes

File metadata and controls

6 lines (5 loc) · 770 Bytes

Under Construction

Sqlite_Database_Implementation_Docs

SQLite is another data storage available in Android where we can store data in the user’s device and can use it any time when required.

What is SQLite Database?

SQLite Database is an open-source database provided in Android which is used to store data inside the user’s device in the form of a Text file. We can perform so many operations on this data such as adding new data, updating, reading, and deleting this data. SQLite is an offline database that is locally stored in the user’s device and we do not have to create any connection to connect to this database.