Top "Realm" questions

The Realm Platform is a data synchronization platform for mobile applications.

"realm migration needed", exception in android while retrieving values from realm db

I am using Realm as a back end in my application. I have created one table named Setting. I added …

android realm
Realm vs Sqlite for mobile development

Am an Xamarin Developer , I used to use Sqlite as mobile database , recently Realm comes to the picture. Any idea …

database sqlite mobile xamarin realm
Best practices to use realm with a recycler view?

Do you guys have any best practices regarding using realm with a recyclerview ? I know it's generic question but I …

android android-recyclerview realm
Realm Android - How can I convert RealmResults to array of objects?

I have an object public class ArticleList extends RealmObject { @PrimaryKey private String id; private String title; private String subtitle; private …

android realm
List<Object> Or RealmList<RealmObject> on Realm Android

I need a list<Object> using Realm. I tried RealmList<RealmObject> but it doesn't work because …

java android realm
RLMException, Migration is required for object type

I have an object NotSureItem in which I have three properties title whose name is renamed from text and textDescription …

ios swift realm
How to put an image in a Realm database?

I'm writing an iOS application using Swift 2 and I would like to save profile picture of an account locally in …

ios swift2 realm
Realm accessed from incorrect thread

I'm using serial GCD queue to work with realm. Application crashes with Realm accessed from incorrect thread exception when GCD …

ios objective-c cocoa realm
Realm migrations in Swift

I have a Realm Object modeled as so class WorkoutSet: Object { // Schema 0 dynamic var exerciseName: String = "" dynamic var reps: Int = 0 // …

swift migration realm data-migration data-management