wait, there is a better way.
>>> from gluon.dal import Rows, Row
>>> result = access.db.executesql("SELECT first_name, last_name FROM
auth_user", as_dict=True)
>>> rows = Rows(records=[Row(item) for item in result])
>>> rows[0].first_name
u'Bruno'You can set other values for each Row.

