Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I insert a record into a database in web.py, I noticed that the insert doesn't return back the record I just inserted. How can I get this record, or at least a specific column in this record?

share|improve this question

1 Answer

up vote 2 down vote accepted

db.insert returns the last insert id, to get the record you should select it using db.select.

share|improve this answer
But what is this "insert id". How do I query/select on it? Is it some field in my table I'm unaware of? – Kurtis Nusbaum Sep 16 '11 at 21:05
The value of the primary key of the new record in your table. – Andrey Kuzmin Sep 16 '11 at 21:54
2  
THANK YOU! THANK YOU! This is what I wanted to know. Thank you so much! To the Web.py developers out there, I love Web.py but this point should be made clearer in the Web.py documentation. – Kurtis Nusbaum Sep 22 '11 at 0:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.