Hi,
Here I am writing way to save object to the parse cloud.
Parse provides ParseObject to handle to saving object.
ParseObject has saveInBackground() method that need to invoke to save.
Let's consider you have to save EmployeeInfo.
ParseObject gameScore = new ParseObject("EmployeeInfo");
gameScore.put("empId", 1221);
gameScore.put("empname", "John Smith");
gameScore.put("designation", "Software Developer");
gameScore.saveInBackground();
0 Comment(s)