VOOZH about

URL: https://www.geeksforgeeks.org/android/how-to-delete-data-in-sqlite-database-in-android/

⇱ How to Delete Data in SQLite Database in Android? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to Delete Data in SQLite Database in Android?

Last Updated : 23 Jul, 2025

In the previous articles, we have seen three operations of CRUD operations such as create, read and update operations in our Android app. In this article, we will take a look at adding delete operation for deleting our items stored in the SQLite database. 

What we are going to build in this article?  

We will be building a simple application in which we will be deleting the course from our SQLite database in our Android app. A sample video is given below to get an idea about what we are going to do in this article. 

Step by Step Implementation

Step 1: Updating our DBHandler class

As we have to delete data from our SQLite database. For that, we have to create a method to delete our data from the SQLite database. Navigate to the app > java > your app's package name > DBHandler and add the below code to it.

Below is the updated code for the DBHandler.java file after adding the above code snippet.

Step 2: Adding a button to delete our course

Navigate to the app > res > layout > activity_update_course.xml file and add a Button inside this layout for deleting a course. Below is the code for that file. 

Below is the updated code for the activity_update_course.xml file after adding the above code snippet.

Step 3: Initializing our button to delete our course

Navigate to the app > java > your app's package name > UpdateCourseActivity.java file and add the below code to it. 

Below is the updated code for the UpdateCourseActivity.java file after adding the above code snippet.

Now run your app and see the output of the app. Make sure to add data to our database before deleting it. 

Output:

Below is the complete project file structure after performing the delete operation:

👁 Image

Comment
Article Tags:

Explore