Skip to content

Instantly share code, notes, and snippets.

@mostasim
Created May 26, 2018 11:12
Show Gist options
  • Save mostasim/d564ef4ce75c29ac4793c492b74121cc to your computer and use it in GitHub Desktop.
Save mostasim/d564ef4ce75c29ac4793c492b74121cc to your computer and use it in GitHub Desktop.
public class DatabaseHelper extends SQLiteOpenHelper {
public DatabaseHelper(Context context, String name) {
super(new DatabaseContext(context), name, null, 1);
}
@Override
public void onCreate(SQLiteDatabase db) {
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment