realm-mobile-platform Questions
4
Solved
I want to access realm database created by my ios app that I created using react-native. Its easier to use adb pull for android but for ios I am not getting much idea. There are some links like -
...
Selfinductance asked 26/5, 2018 at 6:2
2
I have implement the following method to update UserProfile from realm db.
override fun updateCurrentUser(userProfile: UserProfile, successAction: () -> Unit) {
val realm = Realm.getDefaultIns...
Nonproductive asked 20/2, 2018 at 13:56
3
There are three components:
Realm Database: Local Storage & Persistence
Realm Sync: Sync Realm Databases between clients and the Mongo DB Atlas
Mongo DB Atlas: A Cloud Database.
You can u...
Finnougrian asked 11/6, 2020 at 2:31
2
Solved
Conversation class previously had a string field named "message". Now this "message" field is removed and i have added a "RealmList allMessages" inside Conversation class instead of old "message" f...
Rowlett asked 16/7, 2018 at 17:8
4
I'm initializing my realm instance like so:
private static let sUserRealm:Realm = try! Realm(configuration:Realm.Configuration(
fileURL: Bundle.main.url(forResource: "user" ,withExtension: "realm...
Templetempler asked 1/2, 2017 at 10:56
1
Solved
Suppose that I have two models and corresponding tables in the Realm Database
public class Customer :Object {
dynamic var Id : String = ""
dynamic var NAME : String = ""
dynamic var Address : S...
Easily asked 24/9, 2019 at 6:39
2
Solved
I have a object Person with many dogs. App has separate page where it shows just dogs and other page where it shows person's dogs
My model is as follows
class Person: Object {
dynamic var id = ...
Papilloma asked 14/11, 2016 at 15:32
4
I am trying to setup Realm DB locally with my react native application but there seems to be an error that I cannot figure out a reason for. I have followed the documentation and the guide here.
M...
Bellini asked 9/10, 2018 at 8:4
5
mRealm.beginTransaction();
mRealm.clear(AboutItemRealm.class);
mRealm.clear(AgendaItemRealm.class);
mRealm.clear(AttendeesItemRealm.class);
mRealm.clear(DocumentsItemRealm.class);
mRealm.clear(FAQs...
Methylnaphthalene asked 27/4, 2017 at 8:24
1
Solved
im working with realm in android and im getting this error message:
error: Field "items" of type "java.util.List" is not supported.
it's at this line:
private List<Item> items;
here is t...
Georgettageorgette asked 21/6, 2018 at 2:57
0
If I create an anonymous user on Realm Cloud in Swift like this:
let credentials = SyncCredentials.anonymous()
SyncUser.logIn(with: credentials, server: Constants.authURL) { user, error in
//......
Meteoric asked 22/5, 2018 at 5:2
2
Solved
Can I connect to a remote Realm without having to login?
In Swift, the only way to create a synchronizable Realm is through the syncConfiguration property of a Realm.Configuration. Is there a meth...
Greave asked 28/9, 2016 at 2:6
2
Solved
How we can store java list in realm android database. I try to store it by using setter method present in my model, but it doesn't work and I get "Each element of 'value' must be a valid managed ob...
Qulllon asked 2/5, 2017 at 12:41
1
Solved
I am trying to use Realm mobile platform where in i am calling external web service from realm object server and creating objects of different entities.
after creating schema when i am dumping dat...
Fire asked 2/10, 2017 at 5:55
2
Solved
I'm looking into using the new Realm Mobile Platform for a project of mine. I've gone through the guides and was able to get it up and running locally no problem. My question is, what's the best wa...
Rhapsodist asked 29/9, 2016 at 3:29
1
If I want to share some data between users, what is the best strategy with Realm Object Server. For instance 5 users want to share their favorites movies. Everybody share 3 movies and they should s...
Hypnos asked 4/5, 2017 at 7:49
1
Solved
the new realm mobile platform is advertised with offline support, however most tutorials does not show how that works in the examples...
for example, in their todo app example this is the code use...
Implore asked 16/1, 2017 at 8:55
2
Solved
There are at least 2 main collection types used in Realm:
List
Results
The relevant description from the documentation on a Results object says:
Results is an auto-updating container type in...
Wyndham asked 18/10, 2016 at 5:46
1
Solved
Is there currently a way to allow multiple users to access the same Realm?
Right now the only way I could find is to use an 'app account' instead of an user account, as proposed in another questio...
Oversubscribe asked 28/9, 2016 at 20:0
1
© 2022 - 2025 — McMap. All rights reserved.