Guest User

Untitled

a guest
Jul 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. public NotesDbAdapter(Context ctx) {
  2. this.mCtx = ctx;
  3. }
  4.  
  5. public NotesDbAdapter open() throws SQLException {
  6. mDbHelper = new DatabaseHelper(mCtx);
  7. mDb = mDbHelper.getWritableDatabase();
  8. return this;
  9. }
  10.  
  11. public void close() {
  12. mDbHelper.close();
  13. }
Add Comment
Please, Sign In to add comment