I am using OLEDB CSV Parser to read from csv file. I'm not doing a Select * from the file instead I want to read specific columns from the csv file.
But the problem is that irrespective of the column names, I am giving, it is giving the first 2 columns in the result.
My file structure Column1|Column2|Column3|Column4............
Following is the code I am using
string connectionString = string.Format("Provider=Microsoft.Jet.OLEDB.4.0; Data Source={0}; Extended Properties='text;HDR=Yes;FMT=Delimited'", path);
string sql = string.Format("select {0} from [{1}]", "Column1, Column4", fileName);
using (OleDbConnection cnn = new OleDbConnection(connectionString))
{
OleDbCommand cmm = new OleDbCommand(sql, cnn);
OleDbDataAdapter da = new OleDbDataAdapter(cmm);
try
{
da.Fill(dt);
}
catch
{
throw;
}
}
How to read specific columns? Thanks
IMEX=1to your ConnectionString because that ensures that all is treated as text. – Tim Schmelter Feb 15 '12 at 15:49