Hi,
I'm trying to save metadata to a table, so next time I open the file I will be able to use some variables I used when I built the table.
I understand that currently only strings can be saved as metadata to the table.
The other options I tried is to save new script to the table that will include the variables that I need.
the problem is that I don't understand how to use the "Save Script" in a way that will add the value of the variable instead of the variable name.
for example I tried this :
x = expr (a = [1,2,3]);
dt << New script ("test",char (x));
which results in a script with - char(x).
I tried any expr/eval/parse combination I could think of but non of them helped.
I just want the new script "test" to include :
a = [1,2,3]
but when I'm writing the script of course I don't know the actual value of a.
Thanks in advance