Skip to content

Instantly share code, notes, and snippets.

@musart
Last active January 1, 2016 23:18
Show Gist options
  • Save musart/8215369 to your computer and use it in GitHub Desktop.
Save musart/8215369 to your computer and use it in GitHub Desktop.
Add data to parse.com
public void addData(String data) {
if(data.equals(""))
// do nothing
return;
ParseObject newData = new ParseObject("myData");
newData.put("myColumn", data);
newData.saveInBackground();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment