Most voted "realmdb" questions
Realm is a mobile database replacement for Sqlite and Core Data. It is available for Xamarin, Java, Objective-C, React Native and Swift.
Learn more…17 questions
Sort by count of
-
2
votes1
answer89
viewsProblems updating Uicollectionview
I’m having trouble giving reloadData() in Uicollectionview when using the UISearchBar. Debugging to see if the object coming from REALM was nil I realized that the function to filter is coming with…
-
1
votes2
answers96
viewsHow to debug errors in Realm DB?
How can I debug this error and know its origin: lib c++Abi.dylib: terminating with uncaught Exception of type Realm ::Incorrect threadexception: Realm accessed from incorrect thread.…
-
1
votes1
answer40
viewsCheck that all objects in the class that extends Realmobject are empty
My Book.class extending realmobject public class Book extends RealmObject { private String title; private String author; public String getTitle() { return title; } public void setTitle(String title)…
-
1
votes0
answers124
views -
1
votes0
answers56
viewsError passing data to tableViewController
Oops! Guys, I have a problem, I’m making an app that consumes a themoviedb api and saves the movies in the Realm. On the main screen I’m using the Collectionviewcontroller, and when touching the…
-
1
votes0
answers35
viewsEmpty objects in Realmdb with Reactotron
I’m having problems with Realmdb objects, every query I do it returns but in Reactotron they come empty regardless of what I do with the whole object, it only appears if I dismember attribute by…
-
1
votes1
answer44
viewsRealmdb React Native - Empty objects in Realmdb, when creating and listing objects
Whoa, guys, all right? I’m having a problem with my Realmdb here, I’m trying to create a new object and trying to list these created objects. However, when listing or creating, it returns empty…
-
0
votes1
answer109
viewsProblem trying to update object instance with Realm
I made a request in the local database and received an array with the data. Then I run the array with looping for, looking for an object with a specific id, when locating the object I try to update…
-
0
votes1
answer129
viewsSwift 3/Realm - How to filter an Object inside another filter
My intention is to filter a single line within the previous filter results, but returning the same type, so I can perform a third filter. This is my attempt: func salvarDadosAluno(_codPessoa:…
-
0
votes1
answer66
viewsRealm - Search for content with accentuation
From what I’ve read, the Realm is not yet up for accentuation. I wanted to know if there is any way to query the Realm data ignoring the accentuation. For example, I search for "veterinario"…
-
0
votes1
answer53
viewsRealm . NET - Create object copy
Guys I’m having trouble using Realm, in . NET with Xamarin. I can usually add, update or delete objects from a Realm. But like the pro version . NET does not have a copyFromRealm, here comes my…
-
0
votes0
answers15
viewsHow to create more than one schema in Realmdb?
How to create more than one table using Realmdb? Is each schema the equivalent of a table? or can I have just one schema and many tables within that schema? if that is the case, could someone give…
-
0
votes1
answer162
viewsHow to migrate to the new version of Realm
Hello, I have a simple app from my news site, I found it on Github some time ago and edited it. However it stopped working on some devices (Android 5.1 up) when it was the fix found that with the…
-
0
votes1
answer41
viewsHow to capture data correctly from the list?
I put the code down on onCreate and onResume, but of the problem when putting in the onResume. Whenever I return/leave the editing screen, onResume goes into action and goes through the whole list…
-
0
votes2
answers441
viewsHow to delete in Realm in Javascript
I am trying to delete an item from a list using Realm, but all the methods I have tried so far have been failed. The last one I tried for a few tips, it should work, but still no success. View the…
-
0
votes0
answers44
viewsError running React-Native run-android - another error
Good morning everyone. I’m taking a React-Native course and I’m already in the 10th class. I’m running the course project via USB Debugging on mobile. Until then, everything was running well but now…
-
-1
votes1
answer46
viewsAndroid Studio Error: Unable to start Activity
I’m doing a basic CRUD with Realmdb. I made a list, and when some item of this list is selected, it is to open an Update Activity, where you can change the selected data. The problem is that the…