Android SQLite
Android SQLite
Assistant Professor
Shivaji Collage
Course-B.Sc.(APS)Computer Science
Semester - VI
Paper- Android Programming
SQLITE DATABASE
DatbaseHelper.java file
DatabaseHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
SQLiteDatabase db = this.getWritableDatbase();
@Override
public void onUpgrade(SQLiteDatabase db, int
oldVersion, int newVersion) {
If (isInserted == true)
Toast.makeText(MainActivity.this,”data
Inserted”,Toast.LENGTH_LONG).show();
else
Toast.makeText(MainActivity.this,”data not
Inserted”,Toast.LENGTH_LONG).show();
References
• https://developer.android.com/training/data-storage/sqlite