Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public class DatabaseOpenHelper extends SQLiteOpenHelper {
  2. private static final String DATABASE_NAME = "test.db";
  3. private static final int DATABASE_VERSION = 1;
  4.  
  5. public DatabaseOpenHelper(Context context) {
  6. super(context, DATABASE_NAME, null, DATABASE_VERSION);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement