Ok so im trying to populate a drop down navigation bar from a web2py database of product names. The table is defined in db.py like so:\[code\]db.define_table('product',Field('prodid', unique=True),Field('name'),Field('stock', 'integer'))\[/code\]ive done a bit of research and found heaps of ways to do it with php from an SQL database but i havent been able to find anything about retrieving from a local database in web2py. Any help would be appreciated. Thanks.