I have two classes on Parse.com : Image & Data. In Data class, I am saving 3 fields Name,Mobile-number & Occupation. In Image class I\'m saving images.
I hav
I can't exactly tell you the code, but from database perspective, its not a good idea to have tables with many to many relationship. In order to resolve many <-> many relationships, you must break them as below:
one -> many <- one
For more info, read this: http://qisql.com/qisql_sqlite_many2many.html
I'm not an Android developer, but I'll try to field this one. You have two classes, Data and Image. Each instance of Data can be associated to many Images. The piece of information that makes each instance of Data unique is the attribute named Mobile-Number.
You have three options: 1. Parse.com Array 2. Parse.com Relation 3. An association class (as Waquas suggests).
aData.add("images", someImageObject); aData.saveInBackground();
It is possible to associate a list of Images in one go:
aData.addAll("images", Arrays.asList(image1, image2, image3));
When you retrieve a Data instance from parse, the Image objects show up as an array of "pointers". To pull back the actual Image objects, use "fetch". For example of how to use fetch, look for this section of the Parse.com documentation:
By default, when fetching an object, related ParseObjects are not fetched. These objects' values cannot be retrieved until they have been fetched like so:
fetchedComment.getParseObject("post")
.fetchIfNeededInBackground(new GetCallback<ParseObject>() {
public void done(ParseObject object, ParseException e) {
String title = post.getString("title");
}
});
ParseRelation relation = aData.getRelation("images"); relation.add(someImageObject); aData.saveInBackground();
An association class is a good solution if there is extra information about about the relationship between Data and Image-- for example, if a user can mark an image as "one of my favorites". To solve this problem, create a new class in Parse.com called ImageAssociation. The class has three attributes:
I won't go into the mechanics of this solution. Follow Waquas' link in his answer for general information. See also the Parse.com documentation about "relations".