How do I use the include function to run a separate script which uses an open data table?
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"
);
And then I have another script in my personal folder which adds a column to the data table:
Include(filepathforsecondscript.jsl);Current Data Table( dtFROMSQL );
dt << New Column( "X",
...