Hi all,
I've created a script which pulls from SQL and creates a data table as so:
Names Default To Here( 1 );
dtFROMSQL = Execute SQL(
databaseConnectionHandle,
"SELECT HEIGHT, WEIGHT FROM Bigclass",
"NewTable"
);
Include(filepathforsecondscript.jsl);
And then I have another script in my personal folder which adds a column to the data table:
Current Data Table( dtFROMSQL );
dt << New Column( "X", Formula( Random Uniform() ) );
I use an Include function in the first script to run the second script.
My problem is that when I try to run it the second script does not detect the data table created in the first script, I get an error like so:
Name Unresolved: dt in access or evaluation of 'dt' , dt/*###*/
Any way to get my second script to detect the data table created in the first script?