I have 'many:many' table relationship:    base =< join >= index

I need to be sure that I have some value in 'index', if no, then add them 
there.
And I need to know its ID, because in last step I will add both ID's (from 
'index' and from 'base') to the 'join' table.

It is not very plesant for me that db.index.update_or_insert()
- will return ID in case of insert,
- but will return None if the row exists already.

I think this is behaviour by design.
However can I get the ID of existing row somewhere after the 
.update_or_insert() ?
Or what should I use instead of .update_or_insert() ?
I need very fast record lookup, because I need run the cycle with ~3000 
tests in 'index' table

Thanks...

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
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/d/optout.

Reply via email to