COLNEO Pro 1.2
Loading...
Searching...
No Matches
CsvReaderOptions

Description

Options for reading CSV files

{
"locale" : 'german' // (default / 'english'
"separator" : ";" // default ';'
"column_names_from_row" : int // use this row for column names as default
"columns" : [ // specify colmns
{
'name' : "abc" , // if empty use specification of 'columns_from_row' or use 'col<nr>' as property name
'datatype' : 'xs:string'
},
{ 'name' : "xyz" , 'datatype' : 'xs:double' }
],
"ignore_rows" : [ 0, 2, 3 ],
"encoding" : "utf8" // utf8, ansi
}
Since
1.1, 06.2026, jh