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

I'm trying to import a excel file with more than 256 columns using OLEDB in C#. I tried all kinds of things, but it doesn't seem to be possible to read more than 256 columns from a excel (2007 format) file. I'm wondering if it's a bug or I'm simply missing something. Here is the connection string I used:

Provider=Microsoft.ACE.OLEDB.12.0;Data Source=c:\myFolder\myExcel2007file.xlsx;Extended Properties="Excel 12.0

share|improve this question
Are you doing a SELECT *? – Neil Knight May 4 '10 at 15:06

2 Answers

up vote 3 down vote accepted

This is a limitation on the Jet OLEDB driver. One solution that might work (i.e. I haven't tried it) would be to breakup the sheet into named ranges that are no wider than 255 columns and query for each of those separately (e.g. Select * From RangeName) and then merge the results into a single DataTable.

share|improve this answer
Hi Thomas, Can you propose another solution other than breaking the sheet into named ranges? Thanks – Hassan Mokdad May 14 at 17:24
1  
@HassanMokdad - Yes. You need to use an Excel engine other than OLEDB. E.g., ExcelWriter, EPPlus, NPOI. These three are free. There are other engines made from companies like SyncFusion or Aspose which cost money but all can handle building sheets larger than 256 columns. Another choice is to use OpenXml. – Thomas May 14 at 20:19
Thanks a lot!!! I used EPPlus and its amazing, Thanks – Hassan Mokdad May 15 at 7:33
tell me how to read all the columns first in excel sheet sir. i have this kind of requirement of reading columns. i can't read except one column.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Data.OleDb;


namespace ReadingExcel
{
    public class Program
    {
        public static void Main(string[] k)
        {

            string connectionString = @"Provider= Microsoft.ACE.OLEDB.12.0;Data Source=C:\Users\SaiKiran\Desktop\MyExl.xlsx;Extended Properties=Excel 12.0 Xml";

            //Create the connection

            System.Data.OleDb.OleDbConnection excelConnection = new System.Data.OleDb.OleDbConnection(connectionString);
            string excelQuery = @"Select * from [Sheet1$]";
            //string excelQuery1 = @"Select * from [Sheet1$]";
            System.Data.OleDb.OleDbCommand excelCommand = new System.Data.OleDb.OleDbCommand(excelQuery, excelConnection);
            excelConnection.Open();
            System.Data.OleDb.OleDbDataReader excelReader;
            excelReader = excelCommand.ExecuteReader();

            while (excelReader.Read())
            {
                //Globals.Sheet1.Cells[1, 3] = "Set my data";
                    Console.WriteLine("id={0}", excelReader[0].ToString());
                    Console.ReadLine();

            }
            excelConnection.Close();

        }
    }
}
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.