This should do it but let me know if you have problems.
On Sep 14, 6:04 pm, Richard <[email protected]> wrote: > I want to update both auth.user and the auth_user record in the > database. > Is this the proper way? > > user = db(db.auth_user.id == auth.user.id).select().first() > user.update_record(key=value) > auth.user = user > > Thanks

