To be precise, is this the new way you've coded it?
Assume I have a CSV memory buffer with N columns of CSV data.
If Auto-Index is enabled, any of these will work:
a) call with same data in 1st parameter, and columnNames param with "index," pre-pended
OR
b) call with same data in 1st parameter, and empty columnName param. TC will note that there's no "index" column, and will insert it.
OR
c) insert a blank column before data columns in 1st parameter, with header name "index". Empty columname param. TC will see "index" and fill that column.
The two formats supported is:
"index";"time";"minutes";"dateTime";"VSG.Sine"
0;0,016;0,00026666666667;1781377870,893;0
1;0,026;0,00043333333333;1781377870,902;0,06283
2;0,038;0,00063333333333;1781377870,914;0,13823
3;0,046;0,00076666666667;1781377870,922;0,18848
or
0;0,016;0,00026666666667;1781377870,893;0
1;0,026;0,00043333333333;1781377870,902;0,06283
2;0,038;0,00063333333333;1781377870,914;0,13823
3;0,046;0,00076666666667;1781377870,922;0,18848
With a columnNames param: "\"index\";\"time\";\"minutes\";\"dateTime\";\"VSG.Sine\""
Note the \" is required because the parser will use a single "
If you want to add index to the two above:
With the current version it is not possible with the first example, but the updated version will add a "index" column at the start, i.e. there will be two index columns.
For the second example you must modify the header line to: "\"myIndex\",\"index\";\"time\";\"minutes\";\"dateTime\";\"VSG.Sine\""