Howdy,
I'm using an OleDbConnection, OleDbCommand, and OleDbDataReader to read a CSV file into a DataTable.
The CSV file uses the first row as a header row.
Some of the names in the header have non alphanumeric characters like ( _ . / ).
When the system creates the Column names it is transposing the . (period) character into a # (pound sign).
Why is this one character being changed and is there a way to stop the change, making the . (period) stay in the column name?
Thank you,
Keith