when I import csv file using Oledb , weird characters:˥«¿ are added to the first column
code:
string strConnectionString = string.Format("Provider=Microsoft.jet.OLEDB.4.0;Data
OleDbConnection SQLConn = new OleDbConnection(strConnectionString);
Source={0};Extended Properties='text;HDR=Yes;FMT=Delimited(,)';", strFile);
OleDbCommand selectCMD = new OleDbCommand("select * FROM ["+strFileName+"]")
selectCMD.Connection = SQLConn;
SQLAdapter.SelectCommand = selectCMD;
SQLAdapter.Fill(dtXLS);
my file start with the word shape without any char before it. I get in the datatable first column name ˥«¿Shape why? Thanks.