Using SQLite with Flutter


Storing, retrieving, and modifying data are common tasks in many applications. In a cross-platform application, it is important to have a lightweight storage mechanism, as opposed to a heavy database software.

This article explores how to use SQLite in Flutter applications.

Overview of SQLite

SQL Server is an RDBMS in which data is stored in the form of tables. Any number of tables can be created and they can be related to each other. In a mobile application development technology such as Flutter, SQL Server can be used by adding the sql_conn plugin to the app. These days, though, when