db = DAL('sqlite://storage.sqlite', pool_size=1, check_reserved=['all'])
db_endereco = DAL('mysql://user:pass@localhost/cep')
db_endereco.define_table('tend_estado',
Field('id_estado', 'integer'),
Field('estado', 'string', length=150),
Field('uf', 'string', length=2),
primarykey=['id_estado'],
migrate=False)
When I point the mouse to link, look in the bottom of the image that instead of update it brings <function <lambda> at 0x....
Notice that for all other db. tables it works fine... but it wont work for all db_endereco. tables.