• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests
January 12, 2022 |12.9K Views
How to Perform CRUD Operation using SQLite in Flutter?
  Share  1 Like
Description
Discussion

SQLite is an open-source relational database that is present in Android and it is used to perform basic database operations such as add, delete, update and read the data from the database. SQLite is embedded within Android and we don't have to perform any task for building our database. Android provided SQLite open helper class which can be used to access SQLite database in Android. In flutter, SQLite is also named SQLite and we will be using SQLite dependencies for using the SQLite database. In this video, we will be creating a simple application in which we will be displaying the list of courses that are currently available at GeeksforGeeks. In each list item, we will be displaying course name, course image, course price, course duration. Along with that we will be also displaying courses when the user clicks on enroll now button. We will be able to add new course, update the existing course, delete the course and we will be reading all the courses inside the list as well. We will be building this application using dart as a programming language. We will be using Android studio as an IDE. This project will surely help beginner or intermediate level Android developer to brush up and enhance their Android development skills.

Read More