0

I want to add 30 rows with one query to my table at parse.com. Since parse gives limited API requests. I have stored 30 values in my arraylist and want to create separate rows for each value in my table. How to do that?

1 Answer 1

2

Have a look at this

You can use the saveAllInBackground static method of ParseObject. You pass in a list of ParseObjects you wish to save. You can look at the API reference docs for more details: http://www.parse.com/docs/android/api/com/parse/ParseObject.html#saveAllInBackground(java.util.List)

So I'll assume you have 30 ParseObjects that belong in the same table, then the saveAllInBackground(); should work

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.