Skip to content

Instantly share code, notes, and snippets.

@mplacona
Created August 10, 2016 16:53
Show Gist options
  • Save mplacona/6f6190211dd0ea8152d1a1238a976053 to your computer and use it in GitHub Desktop.
Save mplacona/6f6190211dd0ea8152d1a1238a976053 to your computer and use it in GitHub Desktop.
Exploring the vastness of the Realm, a cross-platform mobile database
public class Note extends RealmObject {
public String mText
}
Note note = new Note(); note.mText = "My awesome note";
Realm realm = Realm.getDefaultInstance();
realm.beginTransaction();
realm.copyToRealm(note)
realm.commitTransaction();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment