Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
I'm not sure if it matters in this case but i would add IMEX=1 to your ConnectionString because that ensures that all is treated as text. – Tim Schmelter Feb 15 '12 at 15:49
Does the first row actually have column headings? – William Dwyer Feb 15 '12 at 15:50
Yes, first row contains column names – Ashwani K Feb 15 '12 at 16:01

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.