Android Sqlite Onupgrade Not Working
Testing SQL Upgrades on Android
|
SQLite is an open-source relational database i.e. used to perform database operations on android devices such as storing, manipulating or retrieving persistent data from the database.
It is embedded in android bydefault. So, there is no need to perform any database setup or administration task.
Android sqlite onUpgrade not working. Ask Question Asked 6 years, 10 months ago. Import android.database.sqlite.SQLiteException; import android.database.sqlite.SQLiteOpenHelper; import android.util.Log; public class DataBaseHelper extends SQLiteOpenHelper //The Android's default system path of the application's database. Problem: You want to provide an orderly upgrade to the SQLite database schema on your. Implement the onUpgrade method in your SQLiteHelper subclass.
Here, we are going to see the example of sqlite to store and fetch the data. Data is displayed in the logcat. For displaying data on the spinner or listview, move to the next page.
SQLiteOpenHelper class provides the functionality to use the SQLite database.
SQLiteOpenHelper class
The android.database.sqlite.SQLiteOpenHelper class is used for database creation and version management. For performing any database operation, you have to provide the implementation of onCreate() and onUpgrade() methods of SQLiteOpenHelper class.
Constructors of SQLiteOpenHelper class
There are two constructors of SQLiteOpenHelper class.
Constructor | Description |
---|---|
SQLiteOpenHelper(Context context, String name, SQLiteDatabase.CursorFactory factory, int version) | creates an object for creating, opening and managing the database. |
SQLiteOpenHelper(Context context, String name, SQLiteDatabase.CursorFactory factory, int version, DatabaseErrorHandler errorHandler) | creates an object for creating, opening and managing the database. It specifies the error handler. |
Methods of SQLiteOpenHelper class
There are many methods in SQLiteOpenHelper class. Some of them are as follows:
Like other free movie download sites, C123 Movies also offer high-quality streaming content where you can watch or download movies and TV Shows. C123 Movies boasts high-quality content with all old and new movies which you can stream and download on your computer. Full movie download free torrents. Watch your favorite movies for free in high quality. Largest catalog of free movies including the latest and best movies around. No registration, no passwords. 123movies: Watch HD Full Movies, Series Online Free - Full Movie & Free Download. Home; Movies; TV-Shows; Back to 123movies homepage. Moviescouch is free movie download website in hd 720p. Here you can download free latest movies online in HD quality print.Best place for top bollywood and hollywood movies.
Method | Description |
---|---|
public abstract void onCreate(SQLiteDatabase db) | called only once when database is created for the first time. |
public abstract void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) | called when database needs to be upgraded. |
public synchronized void close () | closes the database object. |
public void onDowngrade(SQLiteDatabase db, int oldVersion, int newVersion) | called when database needs to be downgraded. |
SQLiteDatabase class
It contains methods to be performed on sqlite database such as create, update, delete, select etc.
Methods of SQLiteDatabase class
There are many methods in SQLiteDatabase class. Some of them are as follows:
Method | Description |
---|---|
void execSQL(String sql) | executes the sql query not select query. |
long insert(String table, String nullColumnHack, ContentValues values) | inserts a record on the database. The table specifies the table name, nullColumnHack doesn't allow completely null values. If second argument is null, android will store null values if values are empty. The third argument specifies the values to be stored. |
int update(String table, ContentValues values, String whereClause, String[] whereArgs) | updates a row. |
Cursor query(String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy) | returns a cursor over the resultset. |
Example of android SQLite database
Let's see the simple example of android sqlite database.
Now, let's create the database handler class that extends SQLiteOpenHelper class and provides the implementation of its methods.
Output:
How to view the data stored in sqlite in android studio?
Follow the following steps to view the database and its data stored in android sqlite:
- Open File Explorer.
- Go to data directory inside data directory.
- Search for your application package name.
- Inside your application package go to databases where you will found your database (contactsManager).
- Save your database (contactsManager) anywhere you like.
- Download any SqLite browser plugins or tool (in my case DB Browser for SQLite).
- Launch DB Browser for SQLite and open your database (contactsManager).
- Go to Browse Data -> select your table (contacts) you will see the data stored.