Anthony, you are a 'clairvoyant', the controller code is :
@auth.requires_login()
def current_logs():
records=SQLTABLE(db().select(db.logs.ALL))
return dict(records=records)... oops, you say that I need to use DAL Rows object. not SQLTABLE object ! Then I suddenly changed the controller using : records = db(db.logs.id>0).select() ... and all works fine ! It is evident that I'm a beginner with web2py, sorry and may thanks ! -- Valter

