Android SQLiteDatabase class

Android SQLiteDatabase class contains methods to be performed on sqlite database such as create, update, delete, select etc. There are many methods in SQLiteDatabase class. Some of them are as … Read more

Android SQLiteOpenHelper Class

The android.database.sqlite.SQLiteOpenHelper class is used for database creation and version management. To perform any database operation, you have to provide the implementation of onCreate() and onUpgrade() methods of SQLiteOpenHelper class. Constructors of SQLiteOpenHelper class … Read more

Important Methods in SQLite Database

Method Description getColumnNames() This method is used to get the Array of column names of our SQLite table.  getCount() This method will return the number of rows in the cursor.  … Read more

Android SQLite Database – Introduction

SQLite is an open-source relational database. Android SQLite is the mostly preferred way to store data for android applications. Android SQLite is used to perform database operations on android devices such as … Read more