I'm trying to fetch the password field in a simple query like this:

row = db(db.auth_user.id == uid).select(db.auth_user.password)
eturn row

This is returned:
auth_user.password
auth_user.password <generator object <genexpr> at 0xa313a2c>

What's so special with the password field that I can query every field
but password? How would you query the salted hash of an user?

Thanks in advance,
haggis

Reply via email to