SQLite with RecyclerView

"SQLite with RecyclerView" I hope you enjoying with android coding. Today we are going to study about how to perform CRUD operation with SQLite using RecyclerView. SQLite is a opensource database to store text data in a device. The SQLite comes with built in database implementation in android. There is no need to established any kind of connections like JDBC etc. You can implement ist by extending SQLiteOpenHelper class. Ok, let's start with CREATE table , INSERT data and SELECT data operation. In previous blog we have study about RecyclerView implementation. So, here i'am going to post only about SQLite database. Let's start with creating table, First you need to create one class and extend with SQLiteOpenHelper as shown in below code snippet. There are two methods are override by extendning SQLiteOpenHelper class, namely onCreate and onUpgrade method. In onCreate method we have to c...