Hi,
how can I add a table to a token? I found an aticle about Non-Label Assignment and the command below but I don't get it. Can I store only global tables or in-memory-tables like "mylist" too?
Table globaltable = Table("GlobalTable1"); Table mylist = Table.query("SELECT * FROM GlobalTable1 WHERE B=3"); label(token, "Tablelabel") = globaltable; token.treenode.labels["Tablelabel"] = mylist;
When the table is on the label, how can I read the data from this table?
Thank you