[google-appengine] key - RefrenceProperty

2009-03-24 Thread Steve W
I am struggling with understanding how to use keys to enforce reference between two tables. I need to access the same set of data from table one, and table two. Then change data within both tables. The data manipulation works in the "person" table, but it looses the connection to itself in the "

[google-appengine] Re: key - RefrenceProperty

2009-03-24 Thread Steve W
y wrote: > your ReferenceProperty should be declared as: > > childname = db.ReferenceProperty(person) > > and then set as: > > childname = result > > i think :) > > Sent from my iPhone > > On 09-03-24, at 09:51, Steve W wrote: > > > > > I am struggli

[google-appengine] Re: key - RefrenceProperty

2009-03-24 Thread Steve W
uot;LIMIT 1000") qtresults = qt.fetch(1000) self.response.out.write("") for qtires in qtresults: self.response.out.write(str(qtires.firstName) + " " + str (qtires.lastName) +"") #qtires.delete() On Mar 24, 4:00 pm,