If I select all items in a database:

rows = db(db.table).select()

I can get the ids by doing something like:

ids = []
for row in rows:
    ids.append(row.id)

However, is there a better way to get the ids straight from the rows 
variable (without executing raw sql)? I feel like I'm iterating through the 
entire list of items twice by doing this.

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to