

Android SQLite combines a clean SQL interface with a very small memory footprint and decent speed. Android SQLiteĪndroid SQLite is a very lightweight database which comes with Android OS. In today’s tutorial, you’ll learn implementing SQLite database in your android app using Kotlin. In order to access this database, you don’t need to establish any kind of connections for it like JDBC, ODBC etc.

SQLite database supports all the relational database features. Different database can be implemented for those purposes, SQLite is one of them. In short, an offline database functionality is needed for your application.

You may insert new data, search data, update or delete them. Suppose you want to create an application like Android Note App or ToDo Task app that need to save data into your device, so that later you can access them without internet connection.
