After i found out how to get the right jar to import i started to do a wrap for the upcoming Firebase Firestore Database.
The DB-Structure is based on Documents which represents a
or
What would be the best way to handle this kind of data?
I mean; should i create a helper method to go over a b4a map (i mean in java) which creates a
from the b4a Map given?
is there a easy/simple way to do it in java?
Based on my experience with the "old" realtimedatabase i am thinking that it would be easier if we have a javaclass which represents a database-entry (or in Firestore a document)...
This is the list of allowed Fieldtypes which are all referenced by a name in the java Map
https://firebase.google.com/docs/firestore/manage-data/data-types
What would be the best solution to support these types in a single Object.
I mean what would be the best way to work with the data?
I´m not sure that i fully understand how i would handle this...
The DB-Structure is based on Documents which represents a
B4X:
java.util.Map<String, Object>
B4X:
java.util.Map<String, Long>
What would be the best way to handle this kind of data?
I mean; should i create a helper method to go over a b4a map (i mean in java) which creates a
B4X:
java.util.Map<String, Object>
is there a easy/simple way to do it in java?
Based on my experience with the "old" realtimedatabase i am thinking that it would be easier if we have a javaclass which represents a database-entry (or in Firestore a document)...
This is the list of allowed Fieldtypes which are all referenced by a name in the java Map
https://firebase.google.com/docs/firestore/manage-data/data-types
What would be the best solution to support these types in a single Object.
I mean what would be the best way to work with the data?
I´m not sure that i fully understand how i would handle this...