i create a table and try add two aolumns in jsl as follows:
Test = New Table( "Test" );
Test << New Column( "Ident", Character, Continuous, Format( "Best", 8 ), set values( identifiers ) );
Test << New Column( "Value", Numeric, Continuous, Format( "Best", 8 ), set values( values ) );
identifiers - is a list of caharacters
values - a a list of matching numbers.
using the format above, creates only ident column , populates with values and stops before adding the second column. no report of an error.
(if i run the command latter manually it adds also Value column and the values.
if i use a slightly different format (below), no issues and both columns are created and populated with the values:
Test=new table("Test");
Test<<new column("Value",Numeric,Continuous,format("Best",8),set values(values));
Test<<new column("Ident",Character,Continuous,format("Best",8),set values(identifiers));
any explanation to this behavior?