from gluon.storage import Storage
from gluon.dal import Rows
result = db.executesql("SELECT first_name, last_name FROM auth_user",
as_dict=True)
result = [Storage(item) for item in result]
newrows = Rows(records=result)
newrows[0].first_name
u'Bruno'

Reply via email to