Top "Realm" questions

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

How to find my realm file?

I have created a DB by realm and I am not able to find the file as my OS (Yosemite) …

realm
How do I view my Realm file in the Realm Browser?

I've just discovered Realm and wanted to explore it in more detail so I decided to create sample application and …

java android realm
RealmSwift: Convert Results to Swift Array

What I want to implement: class func getSomeObject() -> [SomeObject]? { let objects = Realm().objects(SomeObject) return objects.count > 0 ? …

ios swift realm
How to delete object from Realm Database Android?

I want remove all message object from realm those are equal to userid RealmQuery<Message> rowQuery = realm.where(…

android database realm
How can I easily delete all objects in a Realm

I have the choice of doing a migration, but I would prefer to delete everything in my defaultRealm(). How can …

ios swift realm
Realm object has been deleted or invalidated

When I start my app, I perform an API call to see whether there's new data available. The data is …

ios swift realm
how to update an object in realm swift

I'm trying to learn how to use Realm Swift and Charts so i can eventually use them both in an …

iphone swift3 realm
How to set primary key auto increment in realm android

I want to set primary key auto increment for my table. Here is my Class. I have set primary key …

android realm
Update statement in Realm android

How should i update a already existing value using realm DB in android? I have been trying to update it …

android realm
Swift Remove Object from Realm

I have Realm Object that save list from the JSON Response. But now i need to remove the object if …

swift xcode realm