Hello,
I’m suddenly getting the following error message
anvil.tables.TableError: Table not found. Has it been deleted?
This occurs in multiple tables. But the tables are definitely there and contain data. The server has full access; I haven’t renamed anything and added no columns.
The error occurs when I retrieve the data in the server code (the parameter has a valid value), for example:
@anvil.server.callable
def get_hardware(muid):
rows = app_tables.assets_hardware.search(muid=muid) # here it happens
return rows
I tried to print the columns of one of the tables and this worked, it listed all columns.
@anvil.server.callable
def test_table():
return app_tables.assets_hardware.list_columns()
It was working an hour ago, but now I’m getting the error and I don’t know why. I deleted a table that wasn’t related to anything, but i am not sure if i did this before or after the errors occured.
Can you help me?
Grreetings, Markus