sergeys
9 years agoContributor
Why Dots are replaced by '#' when getting column names from csv file
Does anybody know, why "." is replaced by "#" when getting column names from CSV file? I have WPF grid which is empty by default and it is possible to add columns with names as specified in Schem...
- 9 years ago
Period is not a valid character in a column name. It seems that a valid name should start with [a-zA-Z_@#] and remaining letters could also include [0-9] (but I notice in practice that a digit can start a column name). I would have thought that names enclosed in double quotes could contain any character but apparently not...
Can't find any authoritative document to say what the driver is expecting for a field name.