Skip to content

Instantly share code, notes, and snippets.

@MaryKuz
Created March 27, 2019 09:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MaryKuz/3665f1b7b2ea3544c2c6c9bea9c5b7be to your computer and use it in GitHub Desktop.
Save MaryKuz/3665f1b7b2ea3544c2c6c9bea9c5b7be to your computer and use it in GitHub Desktop.
Writing in the Database/Realm
Realm realm = Realm.getInstance(this);
realm.beginTransaction();
//... add or update objects here ...
realm.commitTransaction();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment