On Wednesday, August 1, 2018 at 6:46:09 AM UTC-4, Matthew J Watts wrote: > > Hi all > > I'm having the same problem, i'm trying to return an ID after an > 'update_or_insert', but I need the ID whether it inserts or updates to add > as a forign key to a related table. >
Yes, the workaround is simple -- don't use .update_or_insert(). It is a simple function and you can easily replicate the logic on your own. See https://stackoverflow.com/a/51634265/440323. Anthony -- 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 [email protected]. For more options, visit https://groups.google.com/d/optout.

