Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android

Parse user profile creation

Hi Searched around for an answer, could not find one.

I have a patient registration process across multiple screens. The first captures a name, email address and password. Later, it will collect other data.

I started this in the first Activity this way:

ParseObject patient = new ParseObject("patient"); patient.put(patientname, patientname);

In the next Activity I want to essentially record what was selected, following pattern above:

ParseObject patient = new ParseObject("patient"); patient.put(hasmidwife, hasmidwife);

However, it is not a new object..it was created in the past activity...I see a way to query for the object, but then how do I add a new column?

Thanks so much for any help

Michael