Is there a attribute to set in the anvil.table.row to print all columns, it just shows me a few and says there is more but doesn’t show me all of it.
You are printing an anvil.tables.Row
class instance, which defines its own repr
. You could try converting it to a different type. That type may print a more complete listing. E.g., assuming that the instance is named x
:
print(dict(x))