Retrieve data from the class table using parse.com

138 Views Asked by At

I want to retrieve value from the class of the object. example: I have one class Player_info. In this class there is different field like Player name,Score,birthdate. 1.messi,50,7/12/1991. 2.ronaldo,45,7/7/1993. 3.rooney,40,7/12/1991.

now i want to retrieve data ronaldo score which is from this class using parse i was stuck over here from 2 day. plz guys help me out. It was very appreciable.

1

There are 1 best solutions below

3
On

You need to do like this :

    String ObjectId;
    ParseQuery<ParseObject> playerQuery = ParseQuery.getQuery("Player_info");
                      playerQuery.whereEqualTo("Player Name", "ronaldo");
                      playerQuery.setLimit(1);
                      playerQuery.findInBackground(new FindCallback<ParseObject>() {
                        public void done(List<ParseObject> playerList, ParseException e) {
                          if (playerList != null && playerList.size() > 0) {
                              int score = playerList.get(0).getInt("Score");
objectId = playerList.get(0).getObjectid();
                           }
                           }
                      }

Now you can use score of ronaldo wherever you want :) .

To update the value in table you can do that:

// Create a pointer to an object of class Point with id dlkj83d
ParseObject point = ParseObject.createWithoutData("Player_Info", objectId);

// Set a new value on quantity
point.put("Score", newScore);

// Save
point.saveInBackground(new SaveCallback() {
  public void done(ParseException e) {
    if (e == null) {
      // Saved successfully.
    } else {
      // The save failed.
    }
  }
});